diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-06-08 11:51:36 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-06-08 13:20:54 +0200 |
commit | 18c340b9247a6884588ce501cdf259aa74036bfd (patch) | |
tree | 62c97f06d632fc4fc63994d266cd0bb83a4055bb /source3 | |
parent | ef9773c8e77346bd0d52a827b0f9a1b0e3b4ccfd (diff) | |
download | samba-18c340b9247a6884588ce501cdf259aa74036bfd.tar.gz samba-18c340b9247a6884588ce501cdf259aa74036bfd.tar.bz2 samba-18c340b9247a6884588ce501cdf259aa74036bfd.zip |
s3:Makefile.in: use LIBDL as make variable instead of a shell variable
metze
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index c6acb537a4..1a3c8eff03 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -3165,7 +3165,7 @@ test_pam_modules:: pam_modules @$(LIB_PATH_VAR)=./bin && \ export $(LIB_PATH_VAR) && \ for module in $(PAM_MODULES); do \ - ./script/tests/dlopen.sh -lpam ${LIBDL} bin/$${module}.@SHLIBEXT@ \ + ./script/tests/dlopen.sh -lpam $(LIBDL) bin/$${module}.@SHLIBEXT@ \ || exit 1; \ done |