summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2008-02-25 11:32:32 -0500
committerJeremy Katz <katzj@redhat.com>2008-02-25 12:22:56 -0500
commit610cebf679c28f73a3c92fa1d5a68c2c068e9b3d (patch)
tree8acd5d2157f385ca64ea4f3a84461d53604b7419 /scripts
parent2e0864f050a44078841957c44ff3d97c6802bf30 (diff)
downloadanaconda-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-xscripts/buildinstall2
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..."