Simple make xconfig fix, linux-2.3.18

John Kacur (kacur1@home.com)
Sat, 11 Sep 1999 01:56:30 -0400


If you do a make xconfig in kernel linux-2.3.18, you get an error
because of a missing bracket. The file is drivers/char/Config.in

The Patch is

--- Config.in Sat Sep 11 01:34:25 1999
+++ Config.in.bak Sat Sep 11 01:34:01 1999
@@ -69,7 +69,7 @@
dep_tristate 'ATIXL busmouse support' CONFIG_ATIXL_BUSMOUSE
$CONFIG_BUSMOUSE
dep_tristate 'Logitech busmouse support' CONFIG_LOGIBUSMOUSE
$CONFIG_BUSMOUSE
dep_tristate 'Microsoft busmouse support' CONFIG_MS_BUSMOUSE
$CONFIG_BUSMOUSE
- if [ "$CONFIG_PPC" = "y"] ; then
+ if [ "$CONFIG_PPC" = "y" ; then
dep_tristate 'Apple Desktop Bus mouse support' CONFIG_ADBMOUSE
$CONFIG_BUSM
OUSE
fi
fi

jkacur@vaxxine.com

p.s. If this would be better posted elsewhere, then, let me know,
(gently) is there a xconfig maintainer?

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/