summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2008-02-14 16:20:58 -0500
committerJeremy Katz <katzj@redhat.com>2008-02-17 19:51:24 -0500
commit35efa20ffa1d0f0051d7d2933ac22df5fa1a291b (patch)
tree3a340a7b4d438f97cdc64b3d92a65a7da48a5385
parentb7bb2671912c41f659cc787d422758b06bec9970 (diff)
downloadanaconda-35efa20ffa1d0f0051d7d2933ac22df5fa1a291b.tar.gz
anaconda-35efa20ffa1d0f0051d7d2933ac22df5fa1a291b.tar.xz
anaconda-35efa20ffa1d0f0051d7d2933ac22df5fa1a291b.zip
We don't need productpath anymore, so stop taking it as an option
-rwxr-xr-xscripts/buildinstall10
1 files changed, 1 insertions, 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 <version> --product <product> --release <comment> [--prodpath <path>] [--discs <discstring>] <root>" >&2
+ echo "Usage: buildinstall --version <version> --product <product> --release <comment> [--discs <discstring>] <root>" >&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`