summaryrefslogtreecommitdiffstats
path: root/scripts/buildinstall
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-06-11 02:49:25 +0000
committerJeremy Katz <katzj@redhat.com>2003-06-11 02:49:25 +0000
commit0449726519c2809a409edcea423d1f5a32d74b27 (patch)
treee2515d714756cea50afa6c9c6e3b64ec502e0f5a /scripts/buildinstall
parent7307ddc1341bb0fe2da770d2b17f958fc59a733f (diff)
downloadanaconda-0449726519c2809a409edcea423d1f5a32d74b27.tar.gz
anaconda-0449726519c2809a409edcea423d1f5a32d74b27.tar.xz
anaconda-0449726519c2809a409edcea423d1f5a32d74b27.zip
more evidence that quoting in shell is evil
Diffstat (limited to 'scripts/buildinstall')
-rwxr-xr-xscripts/buildinstall2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/buildinstall b/scripts/buildinstall
index 0655dd773..480edc10b 100755
--- a/scripts/buildinstall
+++ b/scripts/buildinstall
@@ -115,7 +115,7 @@ rm -rf $BUILDINSTDIR/usr
echo "Going to run buildinstall again"
# run it again for the second half
if [ -x /usr/bin/runroot ]; then
- runroot $COMPNAME --onlyone --arch $BUILDARCH "$BUILDINSTALL --buildinstdir $BUILDINSTDIR --second $PKGORDERSTR --comp $COMPNAME --version $VERSION --release \"$RELEASESTR\" --product \"$PRODUCTSTR\""
+ runroot $COMPNAME --onlyone --arch $BUILDARCH "$BUILDINSTALL --buildinstdir $BUILDINSTDIR --second $PKGORDERSTR --comp $COMPNAME --version $VERSION --release '\"$RELEASESTR\"' --product '\"$PRODUCTSTR\"'"
else
$BUILDINSTALL --buildinstdir $BUILDINSTDIR --second $PKGORDERSTR --comp $COMPNAME --version $VERSION --release \"$RELEASESTR\" --product \"$PRODUCTSTR\"
fi