From 35efa20ffa1d0f0051d7d2933ac22df5fa1a291b Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Thu, 14 Feb 2008 16:20:58 -0500 Subject: We don't need productpath anymore, so stop taking it as an option --- scripts/buildinstall | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/scripts/buildinstall b/scripts/buildinstall index 1c145a76f..828605fc4 100755 --- a/scripts/buildinstall +++ b/scripts/buildinstall @@ -19,7 +19,7 @@ # usage() { - echo "Usage: buildinstall --version --product --release [--prodpath ] [--discs ] " >&2 + echo "Usage: buildinstall --version --product --release [--discs ] " >&2 exit 1 } @@ -59,13 +59,6 @@ while [ $# -gt 0 ]; do shift; shift ;; - - # where to find the packages so that we can find anaconda-runtime - --prodpath) - PRODUCTPATH=$2 - shift; shift - ;; - *) DIR=$1 shift @@ -94,7 +87,6 @@ if [ -z "$BUGURL" ]; then fi DIR=`cd $DIR; /bin/pwd` -PKGDIR=$DIR/$PRODUCTPATH BUILDINSTDIR=`mktemp -d ${TMPDIR:-/tmp}/buildinstall.tree.XXXXXX` TREEDIR=`mktemp -d ${TMPDIR:-/tmp}/treedir.XXXXXX` -- cgit