From: Günther Deschner Date: Wed, 10 Jun 2009 15:25:12 +0000 (+0200) Subject: s3-build: Fix make test_shlibs and test_nss_modules. X-Git-Tag: tdb-1.1.5~111 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29b78b33d3c2a392ef47183c0b455efa7838bb73;p=thirdparty%2Fsamba.git s3-build: Fix make test_shlibs and test_nss_modules. Guenther --- diff --git a/source3/Makefile.in b/source3/Makefile.in index 1a3c8eff03f..d93c7a76a5c 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -3144,7 +3144,7 @@ test_shlibs: @$(LIB_PATH_VAR)=./bin && \ export $(LIB_PATH_VAR) && \ for module in $?; do \ - ./script/tests/dlopen.sh $${module} \ + ./script/tests/dlopen.sh $(LIBDL) $${module} \ || exit 1; \ done @@ -3154,7 +3154,7 @@ test_nss_modules:: nss_modules @$(LIB_PATH_VAR)=./bin && \ export $(LIB_PATH_VAR) && \ for module in $(NSS_MODULES); do \ - ./script/tests/dlopen.sh $${module} \ + ./script/tests/dlopen.sh $(LIBDL) $${module} \ || exit 1; \ done