add --configure-flags

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19755 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-01-07 16:42:54 +00:00
parent f40a0cb381
commit 3b387b88b0

View File

@@ -21,7 +21,7 @@ PATH="${PATH}:/usr/local/bin:/usr/local/sbin"
# no more use configurabled part below (hopefully) # no more use configurabled part below (hopefully)
usage="[--current] [--release version] [--cvs SourceRepository] [--cvs-flags] [--result-directory dir] [--fetch-method wget|ftp|curl|cvs|fetch|afs] --keep-tree] [--autotools] [--passhrase string] [--no-email] [--build-dir dir] [--cputime] [--distcheck] [--test-environment env]" usage="[--current] [--release version] [--cvs SourceRepository] [--cvs-flags] [--result-directory dir] [--fetch-method wget|ftp|curl|cvs|fetch|afs] --keep-tree] [--autotools] [--passhrase string] [--no-email] [--build-dir dir] [--cputime] [--distcheck] [--test-environment env] [--configure-flags flags]"
date=`date +%Y%m%d` date=`date +%Y%m%d`
if [ "$?" != 0 ]; then if [ "$?" != 0 ]; then
@@ -123,6 +123,10 @@ do
noemail="yes" noemail="yes"
shift shift
;; ;;
--configure-flags)
confflags="${confflags} $2"
shift 2
;;
--version) --version)
echo "Version: $version" echo "Version: $version"
exit 0 exit 0