diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-06-17 14:40:24 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-06-17 14:40:24 +0100 |
commit | 9fc2fb64a4aae97caa4ea189479ebd4fdf96a9d1 (patch) | |
tree | 3fba48477051751b69a7dcd11c6b2ec54c62ea94 /extensions | |
parent | 059f39b5b444b7566b6da3d2eddd179c79239dbc (diff) |
extensions/Makefile.am: use LDFLAGS correctly
LIBS shouldn't be in LDFLAGS, they should be in LIBS or LIBADD.
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extensions/Makefile.am b/extensions/Makefile.am index a2e9fcc..c94184f 100644 --- a/extensions/Makefile.am +++ b/extensions/Makefile.am @@ -17,6 +17,8 @@ EXTRA_DIST = \ $(NULL) noinst_LTLIBRARIES = libtpl-extensions-convenience.la +libtpl_extensions_convenience_la_LIBADD = \ + @LIBTPL_LIBS@ gen_headers = \ _gen/cli-misc.h \ @@ -75,7 +77,6 @@ libtpl_extensions_la_LIBADD = libtpl-extensions-convenience.la endif # ENABLE_PUBLIC_EXTENSIONS AM_CFLAGS = $(ERROR_CFLAGS) @LIBTPL_CFLAGS@ -AM_LDFLAGS = @LIBTPL_LIBS@ # Generated stuff |