summaryrefslogtreecommitdiff
path: root/glib
diff options
context:
space:
mode:
authorDan Nicholson <dbn.lists@gmail.com>2014-02-03 15:59:18 -0800
committerDan Nicholson <dbn.lists@gmail.com>2014-02-03 16:07:31 -0800
commit4f0084d9d3b8726a797a373c7ec5e406000995d0 (patch)
tree8526767cdf5c3b612b68899d1e98b96f79076f3a /glib
parent90320817dc06052de780b406ad74db22845835ba (diff)
downloadpkg-config-4f0084d9d3b8726a797a373c7ec5e406000995d0.tar.gz
glib: Fix Makefiles to suppress warnings from automake
With the newly added glib.mk, some of the noinst_* variables need to use += in the evaluation to avoid multiple definition warnings from automake.
Diffstat (limited to 'glib')
-rw-r--r--glib/glib/Makefile.am2
-rw-r--r--glib/m4macros/Makefile.am2
2 files changed, 2 insertions, 2 deletions
diff --git a/glib/glib/Makefile.am b/glib/glib/Makefile.am
index d46e39b..7093f46 100644
--- a/glib/glib/Makefile.am
+++ b/glib/glib/Makefile.am
@@ -59,7 +59,7 @@ EXTRA_DIST += \
BUILT_EXTRA_DIST += \
glib.rc
-noinst_LTLIBRARIES = libglib-2.0.la
+noinst_LTLIBRARIES += libglib-2.0.la
if OS_WIN32_AND_DLL_COMPILATION
if MS_LIB_AVAILABLE
diff --git a/glib/m4macros/Makefile.am b/glib/m4macros/Makefile.am
index 0e6164c..c91daa8 100644
--- a/glib/m4macros/Makefile.am
+++ b/glib/m4macros/Makefile.am
@@ -5,4 +5,4 @@ installed_m4= glib-2.0.m4 glib-gettext.m4 gsettings.m4
EXTRA_DIST+=$(installed_m4)
m4datadir = $(datadir)/aclocal
-noinst_DATA = $(installed_m4)
+noinst_DATA += $(installed_m4)