From: Tim Van Holder Date: Thu, 28 Jun 2001 19:06:58 +0000 (+0000) Subject: * pdemo/Makefile.am: Use '=' isntead of '+=' to shut up X-Git-Tag: release-1-4b~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a3e2ec3ef404c48d3d9927ddb73b823c83a45c3;p=thirdparty%2Flibtool.git * pdemo/Makefile.am: Use '=' isntead of '+=' to shut up automake. --- diff --git a/ChangeLog b/ChangeLog index d871a5c62..4b8b2d288 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-06-28 Tim Van Holder + + * pdemo/Makefile.am: Use '=' isntead of '+=' to shut up + automake. + 2001-06-27 Gary V. Vaughan From brad@openbsd.org: diff --git a/pdemo/Makefile.am b/pdemo/Makefile.am index 8f0996ade..fee3c8696 100644 --- a/pdemo/Makefile.am +++ b/pdemo/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 = 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)