diff options
author | Jesse Keating <jkeating@redhat.com> | 2008-02-25 11:32:32 -0500 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2008-02-25 12:22:56 -0500 |
commit | 610cebf679c28f73a3c92fa1d5a68c2c068e9b3d (patch) | |
tree | 8acd5d2157f385ca64ea4f3a84461d53604b7419 /scripts | |
parent | 2e0864f050a44078841957c44ff3d97c6802bf30 (diff) | |
download | anaconda-610cebf679c28f73a3c92fa1d5a68c2c068e9b3d.tar.gz anaconda-610cebf679c28f73a3c92fa1d5a68c2c068e9b3d.tar.xz anaconda-610cebf679c28f73a3c92fa1d5a68c2c068e9b3d.zip |
Follow symlinks when looking for the anaconda-runtime package.
This bit rawhide creation as we use a symlink to the packages
on an NFS share to run buildinstall against. Fugly but it works.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/buildinstall | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/buildinstall b/scripts/buildinstall index 5632d6804..f6c148908 100755 --- a/scripts/buildinstall +++ b/scripts/buildinstall @@ -91,7 +91,7 @@ DIR=`cd $DIR > /dev/null; /bin/pwd` BUILDINSTDIR=`mktemp -d ${TMPDIR:-/tmp}/buildinstall.tree.XXXXXX` TREEDIR=`mktemp -d ${TMPDIR:-/tmp}/treedir.XXXXXX` -ANACONDARUNTIME=`find $DIR -name "anaconda-runtime-[0-9]*" |head -n 1` +ANACONDARUNTIME=`find -L $DIR -name "anaconda-runtime-[0-9]*" |head -n 1` BUILDARCH=`rpm -qp --qf "%{ARCH}\n" $ANACONDARUNTIME` echo "Running buildinstall..." |