summaryrefslogtreecommitdiffstats
path: root/scripts/mk-images
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2009-07-27 10:48:15 -1000
committerDavid Cantrell <dcantrell@redhat.com>2009-07-28 14:27:47 -1000
commitffecb7fe44cfb818bdba7e6b8481086a6937a6f1 (patch)
tree646a6494523742bc5e6cf00f35efc4e12843a9ba /scripts/mk-images
parent4f509c27e1a78e3373b5db1b5eee6f52f90623ec (diff)
downloadanaconda-ffecb7fe44cfb818bdba7e6b8481086a6937a6f1.tar.gz
anaconda-ffecb7fe44cfb818bdba7e6b8481086a6937a6f1.tar.xz
anaconda-ffecb7fe44cfb818bdba7e6b8481086a6937a6f1.zip
Make sure s390 gets /lib/ld64.so.1
If s390 images lack /lib/ld64.so.1, nothing works.
Diffstat (limited to 'scripts/mk-images')
-rwxr-xr-xscripts/mk-images5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/mk-images b/scripts/mk-images
index f746a290c..44b430db0 100755
--- a/scripts/mk-images
+++ b/scripts/mk-images
@@ -396,6 +396,11 @@ instbin() {
ln -s $linker ld-linux.so.2
fi
popd
+ if [ "$BUILDARCH" = "s390x" ]; then
+ pushd $DIR/lib
+ ln -s ../$LIBDIR/ld64.so.1
+ popd
+ fi
fi
fi
}