- add HOST_LDFLAGS to hosttools build
- use proper HOST_*FLAGS
- cosmetics
This commit is contained in:
Stephan Raue 2010-06-13 19:15:45 +02:00
parent b0293c6766
commit d0ac1caaa8
2 changed files with 7 additions and 2 deletions

View File

@ -19,7 +19,12 @@ CPPFLAGS="-I$SYSROOT_PREFIX/usr/include" \
--enable-shared \
--disable-static \
make CC=$HOST_CC CPPFLAGS="" CFLAGS="" -C tools
make CC="$HOST_CC" \
CPPFLAGS="$HOST_CPPFLAGS" \
CFLAGS="$HOST_CFLAGS" \
LDFLAGS="$HOST_LDFLAGS" \
-C tools
make
$MAKEINSTALL -C lib

View File

@ -3,5 +3,5 @@
. config/options
mkdir -p $INSTALL/usr/lib
cp -PR $PKG_BUILD/lib/.libs/*.so* $INSTALL/usr/lib
cp -P $PKG_BUILD/lib/.libs/*.so* $INSTALL/usr/lib