Ausgibigere Verwendung von USE_ARCH, und korrektes Setzen von LDEMULATION vermeidet hier einige Fehler

git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorMake@4975 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2009-12-28 10:30:44 +00:00
parent 554af350e4
commit 4a49aa1287

View File

@ -81,7 +81,7 @@ mk32() {
export USE_ARCH=$UARCH
# Make-Optionen eintragen
yes ""|perl Makefile.PL /usr -- PREFIX=$TMPROOT/usr
make -j $NUMCPU
make -j $NUMCPU LDEMULATION=elf32_i386
CheckError "Makeprocess failed !" 1
INSTLIB=`egrep "^INSTALLARCHLIB" Makefile | awk '{ print $3; };'`
@ -89,7 +89,8 @@ mk32() {
touch $INSTLIB/perllocal.pod
# Make install Optionen eintragen
make -j $NUMCPU install
make -j $NUMCPU LDEMULATION=elf32_i386 install
unset USE_ARCH
CheckError "Make install process failed !" 1
}
@ -97,7 +98,7 @@ mk() {
export USE_ARCH=$UARCH
# Make-Optionen eintragen
yes ""|perl Makefile.PL /usr -- PREFIX=$TMPROOT/usr
make -j $NUMCPU
make -j $NUMCPU USE_ARCH=$UARCH
CheckError "Makeprocess failed !" 1
INSTLIB=`egrep "^INSTALLARCHLIB" Makefile | awk '{ print $3; };'`
@ -107,6 +108,7 @@ mk() {
# Make install Optionen eintragen
make -j $NUMCPU install
CheckError "Make install process failed !" 1
unset USE_ARCH
}
postmk() {