summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2009-08-26 14:22:48 -0400
committerDavid Cantrell <dcantrell@redhat.com>2009-08-27 11:17:53 -1000
commitbc43968af41775bfab7d0413ac8b9cca006fec24 (patch)
treeaa8f1ea2f5b4571514c909247199b2ba1b883807 /scripts
parent0cd7b4b5e4cde5fe932fa24139adf3e953f33abd (diff)
Fix typo in get_dso_deps() for searching /lib on s390x
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/buildinstall.functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/buildinstall.functions b/scripts/buildinstall.functions
index af90070a0..54c7f2785 100755
--- a/scripts/buildinstall.functions
+++ b/scripts/buildinstall.functions
@@ -83,7 +83,7 @@ EOF
[ "$(/usr/sbin/chroot $root readlink -f $l)" == "$LDSO" ] && DSO_DEPS="$DSO_DEPS $l"
done
if [ "$(uname -m)" == "s390x" ]; then
- for l in $(/usr/sbin/chroot $root find /lib -maxdepth 1 -type 1 -name ld*.so*); do
+ for l in $(/usr/sbin/chroot $root find /lib -maxdepth 1 -type l -name ld*.so*); do
[ "$(/usr/sbin/chroot $root readlink -f $l)" == "$LDSO" ] && DSO_DEPS="$DSO_DEPS $l"
done
fi