Korrekturen. Installiert jetzt die 64 Bit bin richtig, und die 32 Bit Libs sind auch

wirklich 32 bit



git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorMake@5140 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2010-01-19 12:54:18 +00:00
parent bec38d2817
commit e41edd3239

View File

@ -82,7 +82,7 @@ mk32() {
CXX="g++ $BUILDOPTIONS32" \
USE_ARCH=32 \
./configure --prefix=/usr
make -j $NUMCPU CC="gcc $BUILDOPTIONS32" CXX="g++ $BUILDOPTIONS32"
make -j $NUMCPU CC="gcc $BUILDOPTIONS32" CXX="g++ $BUILDOPTIONS32" USE_ARCH=32
make -j $NUMCPU INSTALL_ROOT=$TMPROOT install
make distclean
}
@ -98,6 +98,13 @@ mk() {
--prefix=/usr
make -j $NUMCPU
make -j $NUMCPU INSTALL_ROOT=$TMPROOT install
if [ "$MK64BIT" == "true" ]; then
if [ -d $TMPROOT/usr/src/qca-*/src/lib64 ]; then
mv $TMPROOT/usr/src/qca-*/src/lib64 $TMPROOT/usr/
mv $TMPROOT/usr/src/qca-*/lib64/* $TMPROOT/usr/lib64
rm -r $TMPROOT/usr/src/qca-*
fi
fi
}
postmk() {