]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* pdemo/Makefile.am: Use '=' isntead of '+=' to shut up
authorTim Van Holder <tim.van.holder@pandora.be>
Thu, 28 Jun 2001 19:06:58 +0000 (19:06 +0000)
committerGary V. Vaughan <gary@gnu.org>
Thu, 28 Jun 2001 19:06:58 +0000 (19:06 +0000)
automake.

ChangeLog
pdemo/Makefile.am

index d871a5c622ce76f0e1d9b03be51af9c1a982f8d0..4b8b2d2885543754b84c897a1eae9aff8d363a45 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-06-28  Tim Van Holder  <tim.van.holder@pandora.be>
+
+       * pdemo/Makefile.am:  Use '=' isntead of '+=' to shut up
+       automake.
+       
 2001-06-27  Gary V. Vaughan  <gary@gnu.org>
 
        From brad@openbsd.org:
index 8f0996ade1fa370a5362b460e41d63b7d7ee6317..fee3c8696738c57ab6081ea0b8799371181b6a55 100644 (file)
@@ -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 = longer_file_name_hello.c longer_file_name_foo.c
-EXTRA_LTLIBRARIES += libhell1.la libhell2.la
+EXTRA_LTLIBRARIES = libhell1.la libhell2.la
 libhell1_la_SOURCES = longer_file_name_hell1.c
 libhell1_la_LIBADD = -L. -lhell0
 libhell1_la_LDFLAGS = -rpath $(libdir)
@@ -131,7 +131,7 @@ libhell2_la_SOURCES = longer_file_name_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 = longer_file_name_main.c
 hell0_LDADD = libhell1.la libhell2.la $(LIBM)