You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
827 B
30 lines
827 B
7 years ago
|
fix errors with newer automake:
|
||
|
|
||
|
gmodule/Makefile.am:44: testgmodule_LDFLAGS must be set with `=' before using `+='
|
||
|
|
||
|
Makefile.am:73: BUILT_SOURCES multiply defined in condition TRUE ...
|
||
|
Makefile.am:11: ... `BUILT_SOURCES' previously defined here
|
||
|
|
||
|
--- Makefile.am
|
||
|
+++ Makefile.am
|
||
|
@@ -70,7 +70,7 @@
|
||
|
|
||
|
CONFIGURE_DEPENDENCIES = acglib.m4
|
||
|
|
||
|
-BUILT_SOURCES = stamp-gc-h #note: not glibconfig.h
|
||
|
+BUILT_SOURCES += stamp-gc-h #note: not glibconfig.h
|
||
|
glibconfig.h: stamp-gc-h
|
||
|
@:
|
||
|
stamp-gc-h: config.status
|
||
|
--- gmodule/Makefile.am
|
||
|
+++ gmodule/Makefile.am
|
||
|
@@ -41,7 +41,7 @@
|
||
|
libgplugin_b_la_LIBADD = @G_MODULE_LIBS@ $(libglib)
|
||
|
|
||
|
noinst_PROGRAMS = testgmodule
|
||
|
-testgmodule_LDFLAGS += @G_MODULE_LDFLAGS@
|
||
|
+testgmodule_LDFLAGS = @G_MODULE_LDFLAGS@
|
||
|
testgmodule_LDADD = libgmodule.la $(libglib) @G_MODULE_LIBS@
|
||
|
|
||
|
.PHONY: files release
|