Fix for PR automake/212:
authorTom Tromey <tromey@redhat.com>
Mon, 16 Jul 2001 16:19:38 +0000 (16:19 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 16 Jul 2001 16:19:38 +0000 (16:19 +0000)
* lib/am/lisp.am (install-%DIR%LISP): Added missing `\'.
(uninstall-%DIR%LISP): Likewise.

ChangeLog
lib/am/lisp.am

index c5dd148f47d59503cda9f1ff811f030be6b30b7e..d6be0e2ce7ecc7135a31b1ffe26a58bff8d71fb9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-07-16  Tom Tromey  <tromey@redhat.com>
+
+       Fix for PR automake/212:
+       * lib/am/lisp.am (install-%DIR%LISP): Added missing `\'.
+       (uninstall-%DIR%LISP): Likewise.
+
 2001-07-15  Tom Tromey  <tromey@redhat.com>
 
        * automake.in (usage): Rewrote code to handle columnization.
index 7789540be184685f7ee0569b90ce05cc59665791..be68f821a079912ebe7115ced185005c5c19dd04 100644 (file)
@@ -41,7 +41,7 @@ _am_installdirs += $(DESTDIR)$(%NDIR%dir)
 install-%DIR%LISP: $(%DIR%_LISP) $(ELCFILES)
        @$(NORMAL_INSTALL)
 ## lispdir might not be defined.
-       @if test -n "$(lispdir)"; then
+       @if test -n "$(lispdir)"; then \
          $(mkinstalldirs) $(DESTDIR)$(%NDIR%dir); \
 ## Funny invocation because Makefile variable can be empty, leading to
 ## a syntax error in sh.
@@ -71,7 +71,7 @@ if %?INSTALL%
 uninstall-%DIR%LISP:
        @$(NORMAL_UNINSTALL)
 ## lispdir might not be defined.
-       @if test -n "$(lispdir)"; then
+       @if test -n "$(lispdir)"; then \
          list='$(%DIR%_LISP)'; for p in $$list; do \
 ?BASE?     f="`echo $$p | sed -e 's|^.*/||'`"; \
 ?!BASE?            f="$$p"; \