diff options
author | Ruediger Meier | 2016-02-22 19:48:30 +0100 |
---|---|---|
committer | Ruediger Meier | 2016-02-23 01:16:58 +0100 |
commit | b201f1d86c871f2cf3e9f9f96a6d72f363aa1947 (patch) | |
tree | 9bba4512973c478c98168a9fac33b51d01266e65 /libmount/src | |
parent | libsmartcols: fix scols_table_print_range() to print header (diff) | |
download | kernel-qcow2-util-linux-b201f1d86c871f2cf3e9f9f96a6d72f363aa1947.tar.gz kernel-qcow2-util-linux-b201f1d86c871f2cf3e9f9f96a6d72f363aa1947.tar.xz kernel-qcow2-util-linux-b201f1d86c871f2cf3e9f9f96a6d72f363aa1947.zip |
build-sys: always use global LDADD
This was a major showstopper when building on a system where
LTLIBINTL libs are needed (e.g. OSX). Maybe there are a few test
programs which wouldn't need LDADD ... never mind.
Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
Diffstat (limited to 'libmount/src')
-rw-r--r-- | libmount/src/Makemodule.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmount/src/Makemodule.am b/libmount/src/Makemodule.am index 36bb00c56..9ff15823a 100644 --- a/libmount/src/Makemodule.am +++ b/libmount/src/Makemodule.am @@ -86,7 +86,7 @@ check_PROGRAMS += \ libmount_tests_cflags = -DTEST_PROGRAM $(libmount_la_CFLAGS) libmount_tests_ldflags = libblkid.la -static -libmount_tests_ldadd = libmount.la $(UUID_LIBS) $(REALTIME_LIBS) +libmount_tests_ldadd = $(LDADD) libmount.la $(UUID_LIBS) $(REALTIME_LIBS) if HAVE_SELINUX libmount_tests_ldadd += $(SELINUX_LIBS) |