libtool-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Another tiny patch (might be automake-specific)


From: Tim Van Holder
Subject: Another tiny patch (might be automake-specific)
Date: Tue, 26 Jun 2001 20:26:40 +0200

Automake (a recent CVS snapshot at least) complains
about needing to set these with '=' before using '+='.

2001-06-26  Tim Van Holder  <address@hidden>

        * pdemo/Makefile.am:  Use '=' isntead of '+=' to shut up
        automake.

Index: pdemo/Makefile.am
===================================================================
RCS file: /home/cvs/libtool/pdemo/Makefile.am,v
retrieving revision 1.2
diff -u -u -r1.2 Makefile.am
--- pdemo/Makefile.am   2001/06/06 14:53:29     1.2
+++ pdemo/Makefile.am   2001/06/26 18:23:25
@@ -122,7 +122,7 @@
 # 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_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)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]