summaryrefslogtreecommitdiff
path: root/src/configure
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-11-15 16:07:24 +0000
committerChristian Pointner <equinox@anytun.org>2009-11-15 16:07:24 +0000
commit415afbb4b9a78e794bc9bfe4847672e6d1611e1f (patch)
tree5ad493db944ce4cdabc4c09f7fcd52daa8fd1082 /src/configure
parentconfigure script update (diff)
added --no-manpage to configure and make
more protable usage of sed
Diffstat (limited to 'src/configure')
-rwxr-xr-xsrc/configure13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/configure b/src/configure
index 0f3750c..5381010 100755
--- a/src/configure
+++ b/src/configure
@@ -47,6 +47,7 @@ BINDIR=''
SBINDIR=''
ETCDIR=''
MANDIR=''
+INSTALLMANPAGE=1
EXAMPLESDIR=''
INSTALLEXAMPLES=1
@@ -58,6 +59,7 @@ print_usage() {
echo " --sbindir=<DIR> the path to the sbin directory (default: $PREFIX/sbin)"
echo " --sysconfdir=<DIR> the path to the system configuration directory (default: $PREFIX/etc"
echo " --mandir=<DIR> the path to the system man pages (default: $PREFIX/share/man)"
+ echo " --no-manpage dont't install manpages"
echo " --examplesdir=<DIR> the path to the examples files (default: $PREFIX/share/examples)"
echo " --no-examples dont't install example files"
echo " --use-ssl-crypto use ssl crypto library instead of libgcrypt"
@@ -89,6 +91,9 @@ do
--mandir=*)
MANDIR=${arg#--mandir=}
;;
+ --no-manpage)
+ INSTALLMANPAGE=0
+ ;;
--examplesdir=*)
EXAMPLESDIR=${arg#--examplesdir=}
;;
@@ -220,9 +225,15 @@ PREFIX := $PREFIX
BINDIR := $BINDIR
SBINDIR := $SBINDIR
ETCDIR := $ETCDIR
-MANDIR := $MANDIR
EOF
+if [ $INSTALLMANPAGE -eq 1 ]; then
+ echo "MANDIR := $MANDIR" >> include.mk
+ echo "installing manpage"
+else
+ echo "not installing manpage"
+fi
+
if [ $INSTALLEXAMPLES -eq 1 ]; then
echo "EXAMPLESDIR := $EXAMPLESDIR" >> include.mk
echo "installing example files"