diff options
author | Tim Prouty <tprouty@samba.org> | 2009-01-26 16:50:31 -0800 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-01-27 00:16:04 -0800 |
commit | 692b63e93a19b1226669ff51a77484dbc50926d0 (patch) | |
tree | ebf496b605862034b4a71ad1dcff1aead05bb596 /source3/m4/check_path.m4 | |
parent | 7f12eb97611a90e5bc01009d23b419f3669e9e7a (diff) | |
download | samba-692b63e93a19b1226669ff51a77484dbc50926d0.tar.gz |
s3 build: Eliminate the gmake-specific Makefile syntax
Diffstat (limited to 'source3/m4/check_path.m4')
-rw-r--r-- | source3/m4/check_path.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/m4/check_path.m4 b/source3/m4/check_path.m4 index 962e2765a03..2a468d7002a 100644 --- a/source3/m4/check_path.m4 +++ b/source3/m4/check_path.m4 @@ -337,7 +337,7 @@ AC_ARG_WITH(selftest-shrdir, AC_MSG_WARN([--with-selftest-shrdir called without argument - will use default]) ;; * ) - selftest_shrdir="$withval" + selftest_shrdir="-s $withval" ;; esac ]) @@ -357,6 +357,7 @@ AC_ARG_WITH(smbtorture4_path, if test -z "$smbtorture4_path" -a ! -f $smbtorture4_path; then AC_MSG_ERROR(['$smbtorture_path' does not exist!]) fi + smbtorture4_path="-t $withval" ;; esac ]) @@ -376,6 +377,7 @@ AC_ARG_WITH(selftest_custom_conf, if test -z "$selftest_custom_conf" -a ! -f $selftest_custom_conf; then AC_MSG_ERROR(['$selftest_custom_conf' does not exist!]) fi + selftest_custom_conf="-c $withval" ;; esac ]) |