|
From: <sv...@va...> - 2010-06-22 06:46:23
|
Author: njn Date: 2010-06-22 07:46:15 +0100 (Tue, 22 Jun 2010) New Revision: 11187 Log: Don't need to have special handling for link_tool_exe now that it's implemented via perl scripts instead of an executable. Modified: trunk/Makefile.all.am Modified: trunk/Makefile.all.am =================================================================== --- trunk/Makefile.all.am 2010-06-22 06:45:44 UTC (rev 11186) +++ trunk/Makefile.all.am 2010-06-22 06:46:15 UTC (rev 11187) @@ -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. |