summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2013-01-31 15:11:52 +0100
committerDave Reisner <dreisner@archlinux.org>2013-01-31 15:11:52 +0100
commit0cc488d38ad99a2fa42b000bbc9d41dce91c57db (patch)
tree23e51524cedbd4611081b55009396699fbc3518b
parent0ca6cc5cfeb040a2eda486c62195fd4ca935dc99 (diff)
downloadmkinitcpio-0.13.0.tar.gz
mkinitcpio-0.13.0.tar.xz
functions: add /usr/lib64 -> lib symlink0.13.0
Relegate this and the other lib64 symlink to x86_64, too, since we have no business creating this on i686. Signed-off-by: Dave Reisner <dreisner@archlinux.org>
-rw-r--r--functions10
1 files changed, 8 insertions, 2 deletions
diff --git a/functions b/functions
index 19b56ef..4df91bc 100644
--- a/functions
+++ b/functions
@@ -598,7 +598,7 @@ initialize_buildroot() {
# creates a temporary directory for the buildroot and initialize it with a
# basic set of necessary directories and symlinks
- local workdir= kernver=$1
+ local workdir= kernver=$1 arch=$(uname -m)
if ! workdir=$(mktemp -d --tmpdir mkinitcpio.XXXXXX); then
error 'Failed to create temporary working directory in %s' "${TMPDIR:-/tmp}"
@@ -608,7 +608,6 @@ initialize_buildroot() {
# base directory structure
install -dm755 "$workdir/root"/{new_root,proc,sys,dev,run,tmp,etc,usr/{local,lib,bin}}
ln -s "usr/lib" "$workdir/root/lib"
- ln -s "usr/lib" "$workdir/root/lib64"
ln -s "../lib" "$workdir/root/usr/local/lib"
ln -s "bin" "$workdir/root/usr/sbin"
ln -s "usr/bin" "$workdir/root/bin"
@@ -616,6 +615,13 @@ initialize_buildroot() {
ln -s "../bin" "$workdir/root/usr/local/bin"
ln -s "../bin" "$workdir/root/usr/local/sbin"
+ case $arch in
+ x86_64)
+ ln -s "lib" "$workdir/root/usr/lib64"
+ ln -s "usr/lib" "$workdir/root/lib64"
+ ;;
+ esac
+
# kernel module dir
install -dm755 "$workdir/root/usr/lib/modules/$kernver/kernel"