From: Heiko Z. <smi...@us...> - 2012-02-19 18:27:19
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv1028/scripts Modified Files: libstdc++-compat Log Message: don't use 32bit libstdc++-compat on 64 build Index: libstdc++-compat =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libstdc++-compat,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- libstdc++-compat 6 Jan 2010 15:20:24 -0000 1.12 +++ libstdc++-compat 19 Feb 2012 18:27:17 -0000 1.13 @@ -17,14 +17,7 @@ case $1 in install ) - if [ "$CONFIG_LIBSTDC_COMPAT" = "y" ]; then - #ln -sf libstdc++.so.2.7.2.8 libstdc++.so.2.7.2 || exit 1 - #ln -sf libstdc++.so.2.7.2.8 libstdc++.so.2 || exit 1 - #ln -sf libstdc++-2-libc6.1-1-2.9.0.so libstdc++-2-libc6.1-1.so.2 || exit 1 - #ln -sf libstdc++-2-libc6.1-1-2.9.0.so libstdc++-2-libc6.1-1.so.3 || exit 1 - #ln -sf libstdc++-2-libc6.1-1-2.9.0.so libstdc++-2-libc6.1-2.so.2 || exit 1 - #ln -sf libstdc++-2-libc6.1-1-2.9.0.so libstdc++-2-libc6.2-2.so.3 || exit 1 - #ln -sf libstdc++-2-libc6.1-1-2.9.0.so libstdc++-libc6.2-2.so.3 || exit 1 + if [ "$CONFIG_LIBSTDC_COMPAT" = "y" ] && [ "$CONFIG_CPU" != "x86_64" ]; then cp -vfdp ./lib* $CDDIR/usr/lib/ || exit 1 fi ;; |