Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3178/scripts
Modified Files:
raidtools
Log Message:
check for kernel version later, otherwise build scri[pt fails
Index: raidtools
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/raidtools,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- raidtools 10 Sep 2004 23:16:24 -0000 1.16
+++ raidtools 11 Sep 2004 03:03:40 -0000 1.17
@@ -25,11 +25,12 @@
MYNAME=RAIDTOOLS
-test "$CONFIG_LINUX_VERSION" = "2.6" && exit 1
+
case $1 in
build )
if [ "$CONFIG_RAIDTOOLS" = "y" ]; then
+ test "$CONFIG_LINUX_VERSION" = "2.6" && exit 1
disable_et_dyn
./configure --prefix= || exit 1
make $PMAKE all || exit 1
|