]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Don't need to have special handling for link_tool_exe now that it's
authorNicholas Nethercote <njn@valgrind.org>
Tue, 22 Jun 2010 06:46:15 +0000 (06:46 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Tue, 22 Jun 2010 06:46:15 +0000 (06:46 +0000)
implemented via perl scripts instead of an executable.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11187

Makefile.all.am

index 6ededaa7ae98fc2345de148ab07f47812491e801..15efa86008963e873875a1fec061826199958774 100644 (file)
@@ -37,10 +37,8 @@ build-noinst_DSYMS: $(noinst_DSYMS)
 inplace-noinst_PROGRAMS: $(noinst_PROGRAMS)
        mkdir -p $(inplacedir); \
        for f in $(noinst_PROGRAMS) ; do \
-          if [ $$f != link_tool_exe ] ; then \
-             rm -f $(inplacedir)/$$f; \
-             ln -f -s ../$(subdir)/$$f $(inplacedir); \
-         fi; \
+         rm -f $(inplacedir)/$$f; \
+         ln -f -s ../$(subdir)/$$f $(inplacedir); \
        done
 
 # Similar to inplace-noinst_PROGRAMS
@@ -57,9 +55,7 @@ inplace-noinst_DSYMS: build-noinst_DSYMS
 install-noinst_PROGRAMS: $(noinst_PROGRAMS)
        $(mkinstalldirs) $(DESTDIR)$(pkglibdir); \
        for f in $(noinst_PROGRAMS); do \
-          if [ $$f != link_tool_exe ] ; then \
-             $(INSTALL_PROGRAM) $$f $(DESTDIR)$(pkglibdir); \
-          fi; \
+         $(INSTALL_PROGRAM) $$f $(DESTDIR)$(pkglibdir); \
        done
 
 # Similar to install-noinst_PROGRAMS.