Introspection ausgeschaltet, da das nicht sauber mag.

git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorMake@5006 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2010-01-06 11:11:28 +00:00
parent 11a5b50e51
commit c9c29fb7dc

View File

@ -84,7 +84,8 @@ mk32() {
CXX="g++ $BUILDOPTIONS32" \
USE_ARCH=32 \
./configure --prefix=/opt/gnome \
--libexecdir=/opt/gnome/lib/libunique &&
--libexecdir=/opt/gnome/lib/libunique \
--enable-introspection=no &&
make -j $NUMCPU &&
make -j $NUMCPU DESTDIR=$TMPROOT install &&
CheckError "Make install process failed !" 1
@ -100,9 +101,10 @@ mk() {
USE_ARCH=$UARCH \
./configure $ADDOPTIONS \
--prefix=/opt/gnome \
--libexecdir=/opt/gnome/$LIBDIR/libunique &&
make -j $NUMCPU &&
make -j $NUMCPU DESTDIR=$TMPROOT install &&
--libexecdir=/opt/gnome/$LIBDIR/libunique \
--enable-introspection=no &&
make -k -j $NUMCPU &&
make -k -j $NUMCPU DESTDIR=$TMPROOT install &&
CheckError "Make install process failed !" 1
}