diff options
author | Günther Deschner <gd@samba.org> | 2009-06-10 17:25:12 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-06-10 17:26:59 +0200 |
commit | 29b78b33d3c2a392ef47183c0b455efa7838bb73 (patch) | |
tree | 9328c4d289c0821674d3608e77b0b4eba3762c31 /source3 | |
parent | ddad58fc41b5ecd1056e444d28020ac1c036a71e (diff) | |
download | samba-29b78b33d3c2a392ef47183c0b455efa7838bb73.tar.gz samba-29b78b33d3c2a392ef47183c0b455efa7838bb73.tar.bz2 samba-29b78b33d3c2a392ef47183c0b455efa7838bb73.zip |
s3-build: Fix make test_shlibs and test_nss_modules.
Guenther
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 1a3c8eff03..d93c7a76a5 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 |