From 94980a15be5eae2820c340d3d33b6c9df7053b24 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lars=20M=C3=BCller?= Date: Tue, 21 Mar 2006 16:18:34 +0000 Subject: [PATCH] r14626: Only set libdir and mandir to the defaults if we haven't used --libdir or --mandir to set them already. Till now we overwrrote a setting made with --libdir or --mandir. --- source/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/configure.in b/source/configure.in index 4b883a28ac00..a5dc7a483f18 100644 --- a/source/configure.in +++ b/source/configure.in @@ -25,10 +25,10 @@ AC_PREFIX_DEFAULT(/usr/local/samba) rootsbindir="\${SBINDIR}" lockdir="\${VARDIR}/locks" piddir="\${VARDIR}/locks" -mandir="\${prefix}/man" +test "${mandir}" || mandir="\${prefix}/man" logfilebase="\${VARDIR}" privatedir="\${prefix}/private" -libdir="\${prefix}/lib" +test "${libdir}" || libdir="\${prefix}/lib" configdir="\${LIBDIR}" swatdir="\${prefix}/swat" -- 2.34.1