Diverse Fehlerkorrekturen

git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorMake@5644 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2010-05-27 14:52:03 +00:00
parent 195a24b88f
commit c1bfd214f8
2 changed files with 8 additions and 5 deletions

View File

@ -69,6 +69,7 @@
# #
SRCPATH=DBase/Server SRCPATH=DBase/Server
export NoRewriteName=true
premk() { premk() {
echo "Nothing to do for premk()" echo "Nothing to do for premk()"
@ -110,5 +111,5 @@ mk() {
} }
postmk() { postmk() {
echo "Nothing to do for postmk()" GetSVN Viitor_Virtuoso $TMPROOT
} }

View File

@ -75,11 +75,12 @@ premk() {
} }
mk32() { mk32() {
CC="gcc $BUILDOPTIONS32" \ CC="gcc $BUILDOPTIONS32 -L/usr/lib" \
CXX="g++ $BUILDOPTIONS32" \ CXX="g++ $BUILDOPTIONS32 -L/usr/lib" \
USE_ARCH=32 \ USE_ARCH=32 \
./configure --prefix=/usr \ ./configure --prefix=/usr \
--with-postgresql=no --with-postgresql=no \
--with-virtuoso=no
make -j $NUMCPU make -j $NUMCPU
make -j $NUMCPU DESTDIR=$TMPROOT install make -j $NUMCPU DESTDIR=$TMPROOT install
make distclean make distclean
@ -94,7 +95,8 @@ mk() {
USE_ARCH=$UARCH \ USE_ARCH=$UARCH \
./configure $ADDOPTIONS \ ./configure $ADDOPTIONS \
--prefix=/usr \ --prefix=/usr \
--with-postgresql=no --with-postgresql=no \
--with-virtuoso=no
make -j $NUMCPU make -j $NUMCPU
make -j $NUMCPU DESTDIR=$TMPROOT install make -j $NUMCPU DESTDIR=$TMPROOT install
} }