]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* demo/Makefile.am: Automake 1.4e does not allow `+=' assignments
authorPeter Eisentraut <peter_e@gmx.net>
Sun, 22 Apr 2001 23:21:58 +0000 (23:21 +0000)
committerGary V. Vaughan <gary@gnu.org>
Sun, 22 Apr 2001 23:21:58 +0000 (23:21 +0000)
if the variable was not set with `=' earlier.  `+=' was not useful
here anyway.

ChangeLog
demo/Makefile.am

index 39d5d0c8eb7a49f3f5fe0c318c34a4e3d8aec39a..9334e4cb61977dd4703394100b8ce950104b6768 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-04-22  Peter Eisentraut  <peter_e@gmx.net>
+
+       * demo/Makefile.am: Automake 1.4e does not allow `+=' assignments
+       if the variable was not set with `=' earlier.  `+=' was not useful
+       here anyway.
+
 2001-04-22  Gary V. Vaughan  <gvv@techie.com>
 
        * ltdl.m4 (AC_CHECK_HEADERS): UW7 has sys/dl.h, so we must
index bbf435dc3f0056482bf81dc33baefee01b1ca15a..7cd19a6a42dc65bd423b75e0eea4d08fa8e029fc 100644 (file)
@@ -120,7 +120,7 @@ hc-minusL: $(hell_OBJECTS) $(hell_DEPENDENCIES)
 # If this one passes with pass_all, it is likely that pass_all works
 EXTRA_LIBRARIES = libhell0.a
 libhell0_a_SOURCES = hello.c foo.c
-EXTRA_LTLIBRARIES += libhell1.la libhell2.la
+EXTRA_LTLIBRARIES = libhell1.la libhell2.la
 libhell1_la_SOURCES = hell1.c
 libhell1_la_LIBADD = -L. -lhell0
 libhell1_la_LDFLAGS = -rpath $(libdir)
@@ -129,7 +129,7 @@ libhell2_la_SOURCES = hell2.c
 libhell2_la_LIBADD = -L. -lhell0
 libhell2_la_LDFLAGS = -rpath $(libdir)
 libhell2_la_DEPENDENCIES = libhell0.a
-EXTRA_PROGRAMS += hell0
+EXTRA_PROGRAMS = hell0
 hell0_SOURCES = main.c
 hell0_LDADD = libhell1.la libhell2.la $(LIBM)