Don't need to have special handling for link_tool_exe now that it's
implemented via perl scripts instead of an executable.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11187 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/Makefile.all.am b/Makefile.all.am
index 6ededaa..15efa86 100644
--- a/Makefile.all.am
+++ b/Makefile.all.am
@@ -37,10 +37,8 @@
 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 @@
 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.