From 1699978404493258ec1fc410089d753ee7b5d522 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 25 Jun 2008 15:53:20 -0400 Subject: Query for anaconda rather than anaconda-runtime in buildinstall Since we don't create an anaconda-runtime package anymore, buildinstall querying for it was going wrong. Admittedly this may be a problem with repoquery and yumdownloader, and that will be investigated, but for the sake of getting things working, I'm fixing it here. --- scripts/buildinstall | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts/buildinstall') diff --git a/scripts/buildinstall b/scripts/buildinstall index 829d33c24..715b79b47 100755 --- a/scripts/buildinstall +++ b/scripts/buildinstall @@ -166,10 +166,10 @@ TREEDIR=`mktemp -d ${TMPDIR:-/tmp}/treedir.XXXXXX` echo "Running buildinstall..." pushd $BUILDINSTDIR -BUILDARCH=`repoquery -c $yumconf --qf "%{ARCH}\n" anaconda-runtime` -yumdownloader -c $yumconf anaconda-runtime || exit 1 -rpm2cpio anaconda-runtime*rpm | cpio --quiet -iumd './usr*' -rm -f anaconda-runtime*rpm +BUILDARCH=`repoquery -c $yumconf --qf "%{ARCH}\n" anaconda` +yumdownloader -c $yumconf anaconda || exit 1 +rpm2cpio anaconda*rpm | cpio --quiet -iumd './usr*' +rm -f anaconda*rpm popd UPD_INSTROOT=./upd-instroot -- cgit