"Dr. Kelsey Hudson wrote:"
> > Question is, is this still broken on -test9-final or did
> > the fix Linus merged earlier today get rid of your problems?
>
> Let me try this and find out...
>
> Hmm. I get an error when trying to run 'make xconfig':
>
> gmake[1]: Entering directory `/usr/src/linux-2.4.0-test9/scripts'
> cat header.tk >> ./kconfig.tk
> ./tkparse < ../arch/sparc/config.in >> kconfig.tk
> -: 97: unknown command
> gmake[1]: *** [kconfig.tk] Error 1
Hmmm, somebody tried to enhance config language...
The following patch should fix it.
Andrzej
********************************************************************************
diff -uNr linux-test9/arch/sparc/config.in linux-test9-patched/arch/sparc/config.in
--- linux-test9/arch/sparc/config.in Tue Sep 19 19:59:52 2000
+++ linux-test9-patched/arch/sparc/config.in Wed Oct 4 08:53:09 2000
@@ -94,7 +94,7 @@
# bool ' LVM information in proc filesystem' CONFIG_LVM_PROC_FS Y
#fi
-include drivers/md/Config.in
+source drivers/md/Config.in
tristate 'RAM disk support' CONFIG_BLK_DEV_RAM
if [ "$CONFIG_BLK_DEV_RAM" = "y" -o "$CONFIG_BLK_DEV_RAM" = "m" ]; then
diff -uNr linux-test9/arch/sparc64/config.in linux-test9-patched/arch/sparc64/config.in
--- linux-test9/arch/sparc64/config.in Tue Sep 19 19:59:52 2000
+++ linux-test9-patched/arch/sparc64/config.in Wed Oct 4 08:53:09 2000
@@ -94,7 +94,7 @@
# bool ' LVM information in proc filesystem' CONFIG_LVM_PROC_FS Y
#fi
-include drivers/md/Config.in
+source drivers/md/Config.in
tristate 'RAM disk support' CONFIG_BLK_DEV_RAM
if [ "$CONFIG_BLK_DEV_RAM" = "y" -o "$CONFIG_BLK_DEV_RAM" = "m" ]; then
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/