mirror of
https://github.com/samba-team/samba.git
synced 2025-02-04 17:47:26 +03:00
47702c8552
(This used to be commit 369a9c1ac1ff94a1d3f51eac20a39577f9cf2155)
18 lines
398 B
Plaintext
18 lines
398 B
Plaintext
#################################################
|
|
# set SWAT directory location
|
|
AC_ARG_WITH(swatdir,
|
|
[ --with-swatdir=DIR Where to put SWAT files ($ac_default_prefix/swat)],
|
|
[ case "$withval" in
|
|
yes|no)
|
|
#
|
|
# Just in case anybody does it
|
|
#
|
|
AC_MSG_WARN([--with-swatdir called without argument - will use default])
|
|
;;
|
|
* )
|
|
swatdir="$withval"
|
|
;;
|
|
esac])
|
|
|
|
AC_SUBST(swatdir)
|