lkml.org 
[lkml]   [2000]   [Dec]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] 2.4.0-test13pre4ac2 fix net/irda/irnet/Config.in: 1: bad if condition
Date
I get the following error with 2.4.0-test13-pre4-ac2:

[root@localhost linux-2.4.0-test13-pre4-ac2]# make xconfig
rm -f include/asm
( cd include ; ln -sf asm-i386 asm)
make -C scripts kconfig.tk
make[1]: Entering directory `/usr/src/linux-2.4.0-test13-pre4-ac2/scripts'
cat header.tk >> ./kconfig.tk
./tkparse < ../arch/i386/config.in >> kconfig.tk
net/irda/irnet/Config.in: 1: bad if condition
make[1]: *** [kconfig.tk] Error 1
make[1]: Leaving directory `/usr/src/linux-2.4.0-test13-pre4-ac2/scripts'
make: *** [xconfig] Error 2

Here is a patch to fix it:
Steven

diff -u linux/net/irda/irnet/Config.in.orig linux/net/irda/irnet/Config.in
--- linux/net/irda/irnet/Config.in.orig Fri Dec 22 20:36:16 2000
+++ linux/net/irda/irnet/Config.in Fri Dec 22 21:16:29 2000
@@ -1,4 +1,4 @@
-if [ $CONFIG_NETDEVICES != "n" ]; then
+if [ "$CONFIG_NETDEVICES" != "n" ]; then
dep_tristate ' IrNET protocol' CONFIG_IRNET $CONFIG_IRDA $CONFIG_PPP
fi

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2005-03-22 12:52    [W:0.019 / U:0.856 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site