diff options
author | Tom Tromey <tromey@redhat.com> | 1999-03-26 21:57:32 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1999-03-26 21:57:32 +0000 |
commit | a85ba428a81672882a84f6972db8a8863347c76b (patch) | |
tree | 906f583886977a184b509dbc45ee5d6cb3bf3b28 /lib/am/scripts.am | |
parent | 2e90f85aa70efbced770f25b2dd00ceb5523db49 (diff) | |
download | automake-a85ba428a81672882a84f6972db8a8863347c76b.tar.gz |
* automake.in (am_install_var): Removed obsolete comment.
* texinfos.am (uninstall-info): Don't print loop but instead print
commands. Simplified pre-uninstall loop.
* scripts.am (uninstall-@DIR@SCRIPTS): Don't print loop but
instead print commands.
* progs.am (uninstall-@DIR@PROGRAMS): Don't print loop but instead
print commands.
* ltlib.am (uninstall-@DIR@LTLIBRARIES): Don't print loop but
instead print commands.
* lisp.am (install-@DIR@LISP): Strip subdir from file name.
(uninstall-@DIR@LISP): Likewise. Also, don't print loop but
instead print commands.
* libs.am (uninstall-@DIR@LIBRARIES): Don't print loop but instead
print commands.
* java.am (uninstall-@DIR@JAVA): Don't print loop but instead
print commands.
* header.am (install-@DIR@HEADERS): Strip subdir from file name.
(uninstall-@DIR@HEADERS): Likewise. Also, don't print loop but
instead print commands.
* data.am (install-@DIR@DATA): Strip subdir from file name.
(uninstall-@DIR@DATA): Likewise. Also, don't print loop but
instead print commands.
Diffstat (limited to 'lib/am/scripts.am')
-rw-r--r-- | lib/am/scripts.am | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/am/scripts.am b/lib/am/scripts.am index 420abb4b2..a0f5c3787 100644 --- a/lib/am/scripts.am +++ b/lib/am/scripts.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994, 1995, 1996, 1998 Free Software Foundation, Inc. +## Copyright (C) 1994, 1995, 1996, 1998, 1999 Free Software Foundation, Inc. ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -32,8 +32,10 @@ install-@DIR@SCRIPTS: $(@DIR@_SCRIPTS) uninstall-@DIR@SCRIPTS: @$(NORMAL_UNINSTALL) - list='$(@DIR@_SCRIPTS)'; for p in $$list; do \ - rm -f $(DESTDIR)$(@DIR@dir)/`echo $$p|sed '$(transform)'`; \ + @list='$(@DIR@_SCRIPTS)'; for p in $$list; do \ + file="`echo $$p|sed '$(transform)'`"; \ + echo " rm -f $(DESTDIR)$(@DIR@dir)/$$file"; \ + rm -f $(DESTDIR)$(@DIR@dir)/$$file; \ done ## Uncomment line in handle_scripts when this is uncommented. |