From: Heiko Z. <smi...@us...> - 2004-10-12 01:20:54
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22353 Modified Files: glibc Log Message: set kernel 2.6.0 as minimum Index: glibc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/glibc,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 --- glibc 12 Oct 2004 01:14:15 -0000 1.36 +++ glibc 12 Oct 2004 01:20:40 -0000 1.37 @@ -67,12 +67,13 @@ cd ../glibc-build || exit 1 # unfortunately we can only go as high as the host kernel version - KVER_RUN=$(cat /proc/sys/kernel/osrelease) - if [ "$KERNELVERSION" \> "$KVER_RUN" ]; then - KVER=$KVER_RUN - else - KVER=$KERNELVERSION - fi + #KVER_RUN=$(cat /proc/sys/kernel/osrelease) + #if [ "$KERNELVERSION" \> "$KVER_RUN" ]; then + # KVER=$KVER_RUN + #else + # KVER=$KERNELVERSION + #fi + KVER="2.6.0" ../glibc-2*/configure --prefix=/usr --disable-profile --enable-add-ons=$ADDON --libexecdir=/usr/bin \ --enable-kernel=$KVER --without-gd -without-cvs --with-tls --with-__thread || exit 1 |