From 52760b13395b9a4bbfd109b41a39f4f669da4b8e Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Tue, 22 Jun 2010 06:46:15 +0000 Subject: [PATCH] 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 --- Makefile.all.am | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Makefile.all.am b/Makefile.all.am index 6ededaa7ae..15efa86008 100644 --- a/Makefile.all.am +++ b/Makefile.all.am @@ -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. -- 2.47.3