diff options
author | Matt Wilson <msw@redhat.com> | 2000-07-12 17:06:38 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-07-12 17:06:38 +0000 |
commit | 6d2eefdf42db61bdea893978511c1d150d66df3c (patch) | |
tree | b2bd7f8637f8f511e38d6ca3f2d96cbf5788762d /scripts/buildinstall | |
parent | a4c57012d5978ce151534325ea32175fb29cda6d (diff) | |
download | anaconda-6d2eefdf42db61bdea893978511c1d150d66df3c.tar.gz anaconda-6d2eefdf42db61bdea893978511c1d150d66df3c.tar.xz anaconda-6d2eefdf42db61bdea893978511c1d150d66df3c.zip |
fix for the way RPM works now, add +cdrom to drivers.img
Diffstat (limited to 'scripts/buildinstall')
-rwxr-xr-x | scripts/buildinstall | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/buildinstall b/scripts/buildinstall index 9852ecdfd..88707b9f2 100755 --- a/scripts/buildinstall +++ b/scripts/buildinstall @@ -19,7 +19,7 @@ BUILDARCH=`rpm -qp --qf "%{ARCH}" $p/RedHat/RPMS/anaconda-runtime-[0-9]*` if [ ! -f $UPD_INSTROOT ]; then cd $BUILDINSTDIR - rpm2cpio $p/RedHat/RPMS/anaconda-runtime-[0-9]* | cpio --quiet -iumd usr/lib/anaconda-runtime/upd-instroot + rpm2cpio $p/RedHat/RPMS/anaconda-runtime-[0-9]* | cpio --quiet -iumd ./usr/lib/anaconda-runtime/upd-instroot usr/lib/anaconda-runtime/upd-instroot mv usr/lib/anaconda-runtime/upd-instroot . rm -rf usr else @@ -29,7 +29,7 @@ UPD_INSTROOT=$BUILDINSTDIR/upd-instroot if [ ! -f $MK_IMAGES ]; then cd $BUILDINSTDIR - rpm2cpio $p/RedHat/RPMS/anaconda-runtime-[0-9]* | cpio --quiet -iumd usr/lib/anaconda-runtime/mk-images* + rpm2cpio $p/RedHat/RPMS/anaconda-runtime-[0-9]* | cpio --quiet -iumd ./usr/lib/anaconda-runtime/mk-images* usr/lib/anaconda-runtime/mk-images* mv usr/lib/anaconda-runtime/mk-images* . rm -rf usr else |