|
From: <ges...@us...> - 2008-01-26 10:48:42
|
Revision: 1031
http://ipcop.svn.sourceforge.net/ipcop/?rev=1031&view=rev
Author: gespinasse
Date: 2008-01-26 02:48:46 -0800 (Sat, 26 Jan 2008)
Log Message:
-----------
Fix glibc detection when libc.so.6.1 is installed (like in alpha)
Modified Paths:
--------------
ipcop/trunk/make.sh
Modified: ipcop/trunk/make.sh
===================================================================
--- ipcop/trunk/make.sh 2008-01-26 10:42:13 UTC (rev 1030)
+++ ipcop/trunk/make.sh 2008-01-26 10:48:46 UTC (rev 1031)
@@ -1149,7 +1149,7 @@
SUCCESS=$[ ${SUCCESS} - 1 ]
fi
- check_version "GNU libc" ${REQUIRED_GLIBC} `/lib/libc.so.6 | head -n1 | cut -d" " -f7 | cut -d"," -f1`
+ check_version "GNU libc" ${REQUIRED_GLIBC} `/lib/libc.so.6* | head -n1 | cut -d" " -f7 | cut -d"," -f1`
RESULT=${?}
SUCCESS=$[ ${SUCCESS} - ${RESULT} ]
if [ ${RESULT} -eq 0 ]; then
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|