diff options
author | Jeremy Katz <katzj@redhat.com> | 2008-03-19 15:22:54 -0400 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2008-03-19 15:23:50 -0400 |
commit | 83ec01bc70e646b831de344e983c3be977f9478a (patch) | |
tree | 645185948f03de0dc4081de556441d56c0c61592 /scripts/buildinstall | |
parent | 8b17c28d8bb00288c746477338c9d5aea91cc87c (diff) | |
download | anaconda-83ec01bc70e646b831de344e983c3be977f9478a.tar.gz anaconda-83ec01bc70e646b831de344e983c3be977f9478a.tar.xz anaconda-83ec01bc70e646b831de344e983c3be977f9478a.zip |
Fix $UPDATES for real
It would help if I could type I suspect
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 ce245479a..a5001a9c5 100755 --- a/scripts/buildinstall +++ b/scripts/buildinstall @@ -142,7 +142,7 @@ MK_STAMP=./makestamp.py BUILDINSTALL=./buildinstall for f in $UPD_INSTROOT $MK_IMAGES $MK_STAMP $MK_TREEINFO $BUILDINSTALL; do - if [ -n "UPDATES" -a -f $UPDATES/usr/lib/anaconda-runtime/$f ]; then + if [ -n "$UPDATES" -a -f $UPDATES/usr/lib/anaconda-runtime/$f ]; then cp -a $UPDATES/usr/lib/anaconda-runtime/$f* $BUILDINSTDIR/ elif [ ! -f $f ]; then cp -a $BUILDINSTDIR/usr/lib/anaconda-runtime/$f* $BUILDINSTDIR/ |