From: Tom Tromey Date: Fri, 28 Jul 2000 17:11:11 +0000 (+0000) Subject: * lisp.am (uninstall-@DIR@LISP): Prefix file with $(DESTDIR). X-Git-Tag: Release-1-4b~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4dcad717d7aba3bff076c7db3bf6e6ec527d3a12;p=thirdparty%2Fautomake.git * lisp.am (uninstall-@DIR@LISP): Prefix file with $(DESTDIR). From Bruno Haible. --- diff --git a/ChangeLog b/ChangeLog index d033f5c65..feb273686 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-07-28 Tom Tromey + + * lisp.am (uninstall-@DIR@LISP): Prefix file with $(DESTDIR). + From Bruno Haible. + 2000-07-13 Kevin Ryde * 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