From: Alexandre Duret-Lutz Date: Tue, 13 Sep 2005 20:12:41 +0000 (+0000) Subject: * lib/am/ltlib.am (uninstall-%DIR%LTLIBRARIES): Do not put X-Git-Tag: Release-1-9b~115 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1f866fbd3ffb75da2ae96ab61e021a9c656fc25;p=thirdparty%2Fautomake.git * lib/am/ltlib.am (uninstall-%DIR%LTLIBRARIES): Do not put shell in verbose mode. --- diff --git a/ChangeLog b/ChangeLog index ac358f0d0..b23d6afaf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-09-13 Ralf Wildenhues + + * lib/am/ltlib.am (uninstall-%DIR%LTLIBRARIES): Do not put + shell in verbose mode. + 2005-08-07 Alexandre Duret-Lutz * lib/Automake/Variable.pm (variable_value): Do not read the TRUE diff --git a/lib/am/ltlib.am b/lib/am/ltlib.am index 9ec33d1ca..4be1e6d66 100644 --- a/lib/am/ltlib.am +++ b/lib/am/ltlib.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2003, 2004 +## Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2003, 2004, 2005 ## Free Software Foundation, Inc. ## This program is free software; you can redistribute it and/or modify @@ -64,7 +64,7 @@ if %?INSTALL% .PHONY uninstall-am: uninstall-%DIR%LTLIBRARIES uninstall-%DIR%LTLIBRARIES: @$(NORMAL_UNINSTALL) - @set -x; list='$(%DIR%_LTLIBRARIES)'; for p in $$list; do \ + @list='$(%DIR%_LTLIBRARIES)'; for p in $$list; do \ ?BASE? p=$(am__strip_dir) \ ?LIBTOOL? echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(%NDIR%dir)/$$p'"; \ ?LIBTOOL? $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(%NDIR%dir)/$$p"; \