Jetzt werden alle zugehörigen teile gebaut, und eine initialisierung eingepsielt

git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorMake@5345 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2010-02-05 13:47:38 +00:00
parent 94189bb3b7
commit 9633a35ab3

View File

@ -103,21 +103,34 @@ mk() {
CXX="g++ $BUILDOPTIONS" \
USE_ARCH=$UARCH \
../bluez-utils*/configure --host=$TARGET \
--enable-all \
--sysconfdir=/etc/sysconfig \
--libexecdir=/usr/sbin \
--enable-alsa \
--enable-usb \
--enable-netlink \
--enable-tools \
--enable-bccmd \
--enable-hid2hci \
--enable-dfutool \
--enable-hidd \
--enable-pand \
--enable-dund \
--enable-cups \
--enable-test \
--enable-configfiles \
--enable-initscripts \
--enable-pcmciarules \
$ADDOPTIONS \
--prefix=/usr
make -j $NUMCPU
make -j $NUMCPU DESTDIR=$TMPROOT install
cd ../bluez-utils*
rm -r ../build-bluez
if [ ! -d $TMPROOT/etc/init.d ]; then
mkdir $TMPROOT/etc/init.d
cp scripts/bluetooth.init $TMPROOT/etc/init.d/bluetooth
chmod 755 $TMPROOT/etc/init.d/bluetooth
fi
#if [ ! -d $TMPROOT/etc/init.d ]; then
#mkdir $TMPROOT/etc/init.d
#cp scripts/bluetooth.init $TMPROOT/etc/init.d/bluetooth
#chmod 755 $TMPROOT/etc/init.d/bluetooth
#fi
}
postmk() {