summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2001-04-22 23:13:11 +0000
committerGary V. Vaughan <gary@gnu.org>2001-04-22 23:13:11 +0000
commit8c36a5ff1fdddd716c20e760a3410770761ca957 (patch)
tree3b49f2799e32359356467ddf8253fb26a0b98029
parentbcb3a01e01e0951921e0ea1f364a4e681045d839 (diff)
downloadlibtool-8c36a5ff1fdddd716c20e760a3410770761ca957.tar.gz
* demo/Makefile.am: Automake 1.4e does not allow `+=' assignments
if the variable was not set with `=' earlier. `+=' was not useful here anyway.
-rw-r--r--ChangeLog6
-rw-r--r--demo/Makefile.am4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 146ff932..6c46b054 100644
--- 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
diff --git a/demo/Makefile.am b/demo/Makefile.am
index afc7e8f3..81c7a845 100644
--- a/demo/Makefile.am
+++ b/demo/Makefile.am
@@ -122,7 +122,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)
@@ -131,7 +131,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)