libpath wird jetzt auf /tools gesetzt

git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorMake@4474 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2008-05-07 07:19:10 +00:00
parent fec105bd92
commit beb7861740

View File

@ -98,14 +98,16 @@ premk() {
mk() { mk() {
if [ "$MK64BIT" == "true" ]; then if [ "$MK64BIT" == "true" ]; then
ADDCONFIGURE="--libdir=/tools/lib64" LIBDIR=lib64
else
LIBDIR=lib
fi fi
CC="${CC} ${BUILDOPTIONS}" \ CC="${CC} ${BUILDOPTIONS}" \
../binutils*/configure --host=$TARGET \ ../binutils*/configure --host=$TARGET \
--target=$TARGET \ --target=$TARGET \
--build=$HOSTSYS \ --build=$HOSTSYS \
--prefix=/tools \ --prefix=/tools \
$ADDCONFIGURE \ --libdir=/tools/$LIBDIR
--with-lib-path=/tools/lib \ --with-lib-path=/tools/lib \
--disable-nls \ --disable-nls \
--enable-shared \ --enable-shared \