diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-11-06 16:34:23 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-11-06 16:34:23 +0000 |
commit | 5b1b2931464d51335d0a47847a7b9e75ad67ac85 (patch) | |
tree | f630fde1418b39893c692f7de23b9da9b29fd446 /scripts/buildinstall | |
parent | d1f71653a0a398beaa51b22ca624935579640462 (diff) | |
download | anaconda-5b1b2931464d51335d0a47847a7b9e75ad67ac85.tar.gz anaconda-5b1b2931464d51335d0a47847a7b9e75ad67ac85.tar.xz anaconda-5b1b2931464d51335d0a47847a7b9e75ad67ac85.zip |
more shell quoting fun from forrest
Diffstat (limited to 'scripts/buildinstall')
-rwxr-xr-x | scripts/buildinstall | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/buildinstall b/scripts/buildinstall index ec133c9cf..b20d61f56 100755 --- a/scripts/buildinstall +++ b/scripts/buildinstall @@ -127,7 +127,7 @@ echo "Going to run buildinstall again" if [ -x /usr/bin/runroot ]; then runroot $COMPNAME --onlyone --arch $BUILDARCH "$BUILDINSTALL --buildinstdir $BUILDINSTDIR --second $PKGORDERSTR --comp $COMPNAME --version $VERSION --release '\"$RELEASESTR\"' --product '\"$PRODUCTSTR\"' --prodpath $PRODUCTPATH $DIR" else - $BUILDINSTALL --buildinstdir $BUILDINSTDIR --second $PKGORDERSTR --comp $COMPNAME --version $VERSION --release '\"$RELEASESTR\"' --product '\"$PRODUCTSTR\"' --prodpath $PRODUCTPATH $DIR + $BUILDINSTALL --buildinstdir $BUILDINSTDIR --second $PKGORDERSTR --comp $COMPNAME --version $VERSION --release "$RELEASESTR" --product "$PRODUCTSTR" --prodpath $PRODUCTPATH $DIR fi rm -rf $BUILDINSTDIR |