image/install:

- create /lib64 and /usr/lib64 symbolic links needed for x64 support
This commit is contained in:
Stephan Raue 2010-01-19 16:15:55 +01:00
parent 2b18eb29e8
commit 8f455e6e14

View File

@ -44,6 +44,11 @@ case "$2" in
ln -sf /var/tmp $INSTALL/tmp
ln -sf /var/media $INSTALL/media
if [ $TARGET_ARCH = x86_64 -o $TARGET_ARCH = powerpc64 ]; then
ln -s /lib $INSTALL/lib64
ln -s lib $INSTALL/usr/lib64
fi
# Basissystem...
$SCRIPTS/install eglibc
$SCRIPTS/install gcc-final