diff options
author | Gerald Carter <jerry@samba.org> | 2003-12-11 22:31:00 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-12-11 22:31:00 +0000 |
commit | 4d0dcebb83324b9912b908cec3308a1c77da2230 (patch) | |
tree | 14cbe44f62ce60372df66826409e317dcab5ec9d /source3/configure.in | |
parent | 525f7255f4c8ce478b3e5bcc5078c85482213016 (diff) | |
download | samba-4d0dcebb83324b9912b908cec3308a1c77da2230.tar.gz samba-4d0dcebb83324b9912b908cec3308a1c77da2230.tar.bz2 samba-4d0dcebb83324b9912b908cec3308a1c77da2230.zip |
fix bug that prevent --mandir from overriding the defaults given in the --with-fhs macro
(This used to be commit 824218d086d90f6fcf3789e8e87f047e2da55c25)
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/source3/configure.in b/source3/configure.in index 62bba1ea13..4d681c0d87 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -28,7 +28,6 @@ AC_ARG_WITH(fhs, logfilebase="\${VARDIR}" lockdir="\${VARDIR}/locks" piddir="\${VARDIR}/locks" - mandir="\${prefix}/man" privatedir="\${prefix}/private" swatdir="\${prefix}/swat") @@ -81,23 +80,6 @@ AC_ARG_WITH(piddir, esac]) ################################################# -# set pid directory location -AC_ARG_WITH(piddir, -[ --with-mandir=DIR Where to put man pages ($ac_default_prefix/man)], -[ case "$withval" in - yes|no) - # - # Just in case anybody calls it without argument - # - AC_MSG_WARN([--with-mandir called without argument - will use default]) - ;; - * ) - piddir="$withval" - ;; - esac]) - - -################################################# # set SWAT directory location AC_ARG_WITH(swatdir, [ --with-swatdir=DIR Where to put SWAT files ($ac_default_prefix/swat)], @@ -167,7 +149,6 @@ done AC_SUBST(configdir) AC_SUBST(lockdir) AC_SUBST(piddir) -AC_SUBST(mandir) AC_SUBST(logfilebase) AC_SUBST(privatedir) AC_SUBST(swatdir) |