summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--THANKS1
-rw-r--r--lib/am/lisp.am4
-rw-r--r--lisp.am4
4 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index d033f5c65..feb273686 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-07-28 Tom Tromey <tromey@cygnus.com>
+
+ * lisp.am (uninstall-@DIR@LISP): Prefix file with $(DESTDIR).
+ From Bruno Haible.
+
2000-07-13 Kevin Ryde <user42@zip.com.au>
* automake.in (am_install_var): Apply the $(EXEEXT) hack to
diff --git a/THANKS b/THANKS
index 89ec31740..25010dd89 100644
--- a/THANKS
+++ b/THANKS
@@ -18,6 +18,7 @@ Bill Fenner fenner@parc.xerox.com
Brendan O'Dea bod@compusol.com.au
Brian Ford ford@vss.fsi.com
Brian Jones cbj@nortel.net
+Bruno Haible haible@ilog.fr
Chris Provenzano proven@io.proven.org
Dave Morrison dave@bnl.gov
David A. Swierczek swiercze@mr.med.ge.com
diff --git a/lib/am/lisp.am b/lib/am/lisp.am
index b737a6dda..457fc4674 100644
--- a/lib/am/lisp.am
+++ b/lib/am/lisp.am
@@ -1,5 +1,5 @@
## automake - create Makefile.in from Makefile.am
-## Copyright (C) 1996, 1998, 1999 Free Software Foundation, Inc.
+## Copyright (C) 1996, 1998, 1999, 2000 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
@@ -40,5 +40,5 @@ uninstall-@DIR@LISP:
BASE f="`echo $$p | sed -e 's|^.*/||'`"; \
NOBASE f="$$p"; \
echo " rm -f $(@NDIR@dir)/$$f $(DESTDIR)$(@NDIR@dir)/$${f}c"; \
- rm -f $(@NDIR@dir)/$$f $(DESTDIR)$(@NDIR@dir)/$${f}c; \
+ rm -f $(DESTDIR)$(@NDIR@dir)/$$f $(DESTDIR)$(@NDIR@dir)/$${f}c; \
done
diff --git a/lisp.am b/lisp.am
index b737a6dda..457fc4674 100644
--- a/lisp.am
+++ b/lisp.am
@@ -1,5 +1,5 @@
## automake - create Makefile.in from Makefile.am
-## Copyright (C) 1996, 1998, 1999 Free Software Foundation, Inc.
+## Copyright (C) 1996, 1998, 1999, 2000 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
@@ -40,5 +40,5 @@ uninstall-@DIR@LISP:
BASE f="`echo $$p | sed -e 's|^.*/||'`"; \
NOBASE f="$$p"; \
echo " rm -f $(@NDIR@dir)/$$f $(DESTDIR)$(@NDIR@dir)/$${f}c"; \
- rm -f $(@NDIR@dir)/$$f $(DESTDIR)$(@NDIR@dir)/$${f}c; \
+ rm -f $(DESTDIR)$(@NDIR@dir)/$$f $(DESTDIR)$(@NDIR@dir)/$${f}c; \
done