Makefile korrektur wird nur im 64 Bit System benoetigt.

git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorMake@4887 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2009-11-14 16:05:22 +00:00
parent cc7fab755a
commit f3b132398d

View File

@ -99,7 +99,9 @@ mk() {
./configure --prefix=/tools \ ./configure --prefix=/tools \
$ADDOPTIONS \ $ADDOPTIONS \
--shared --shared
sed -i -e "s/\(linux-gnu-ar\)/\1 -rc/" Makefile if [ "$MK64BIT" == "true" ]; then
sed -i -e "s/\(linux-gnu-ar\)/\1 -rc/" Makefile
fi
make -j $NUMCPU && make -j $NUMCPU &&
make -j $NUMCPU install make -j $NUMCPU install
} }