]> git.pld-linux.org Git - projects/rc-scripts.git/blame - autogen.sh
Don't fail if arrays are already assembled (ex raid10 with 4 devices, one device...
[projects/rc-scripts.git] / autogen.sh
CommitLineData
7e04fe0e 1#!/bin/sh
2# Run this to generate all the initial makefiles, etc.
3
712d06e5 4srcdir=$(dirname "$0")
7e04fe0e 5test -z "$srcdir" && srcdir=.
6
86734c0c 7PKG_NAME="PLD Linux Distribution rc-scripts"
7e04fe0e 8
712d06e5 9autoreconf -vif "$srcdir"
7e04fe0e 10
9addeedb 11conf_flags="" #--enable-maintainer-mode --enable-compile-warnings --enable-iso-c
7e04fe0e 12
13if test x$NOCONFIGURE = x; then
14 echo Running $srcdir/configure $conf_flags "$@" ...
15 $srcdir/configure $conf_flags "$@" \
16 && echo Now type \`make\' to compile $PKG_NAME
17else
18 echo Skipping configure process.
19fi
This page took 0.103037 seconds and 4 git commands to generate.