]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* lisp.am (uninstall-@DIR@LISP): Prefix file with $(DESTDIR).
authorTom Tromey <tromey@redhat.com>
Fri, 28 Jul 2000 17:11:11 +0000 (17:11 +0000)
committerTom Tromey <tromey@redhat.com>
Fri, 28 Jul 2000 17:11:11 +0000 (17:11 +0000)
From Bruno Haible.

ChangeLog
THANKS
lib/am/lisp.am
lisp.am

index d033f5c6587a68bbe048a42d9c07cc7577d60e66..feb2736869b52e955cf4bcc971e0ce7df71d2893 100644 (file)
--- 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 89ec31740e5f9eb8b18258b55f06762c74366168..25010dd89d501121fd897627dac04443358dee3d 100644 (file)
--- 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
index b737a6dda011f49240f1bba7b808014d9392b4b2..457fc467430d3d237ff642d08d5f06a9755cb387 100644 (file)
@@ -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 b737a6dda011f49240f1bba7b808014d9392b4b2..457fc467430d3d237ff642d08d5f06a9755cb387 100644 (file)
--- 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