summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Duret-Lutz <adl@gnu.org>2005-09-13 20:13:29 +0000
committerAlexandre Duret-Lutz <adl@gnu.org>2005-09-13 20:13:29 +0000
commitf8e62a96107a451b04774bd1cf8ed69e665c1966 (patch)
treebd5875cc28bf6388ec36f642ef2826e4662b9dc3
parent2abd0649b8c840ec90bfa663ff3ec6d0b505e3ad (diff)
downloadautomake-f8e62a96107a451b04774bd1cf8ed69e665c1966.tar.gz
* lib/am/ltlib.am (uninstall-%DIR%LTLIBRARIES): Do not put
shell in verbose mode.
-rw-r--r--ChangeLog5
-rw-r--r--lib/am/ltlib.am4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e10b71607..08c3a263f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ * lib/am/ltlib.am (uninstall-%DIR%LTLIBRARIES): Do not put
+ shell in verbose mode.
+
2005-08-07 Stepan Kasal <kasal@ucw.cz>
* lib/am/texinfos.am (uninstall-info-am): Call install-info only if
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"; \