Please apply this tiny patch to have `make uninstall' of LTLIBRARIES be on a similar verbosity level as other uninstallation.
Thanks, Ralf * lib/am/ltlib.am (uninstall-%DIR%LTLIBRARIES): Do not put shell in verbose mode. Index: lib/am/ltlib.am =================================================================== RCS file: /cvs/automake/automake/lib/am/ltlib.am,v retrieving revision 1.32 diff -u -r1.32 ltlib.am --- lib/am/ltlib.am 14 May 2005 20:28:53 -0000 1.32 +++ lib/am/ltlib.am 8 Aug 2005 14:09:14 -0000 @@ -64,7 +64,7 @@ .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"; \