Messages in this thread Patch in this message |  | | Subject | [PATCH] 2.5.9-dj1, fix for make xconfig in drivers/isdn/Config.in | From | Steven Cole <> | Date | 23 Apr 2002 21:31:59 -0600 |
| |
I read that some of you got this while doing make xconfig.
[steven@localhost linux-2.5.9-dj1]$ make xconfig rm -f include/asm ( cd include ; ln -sf asm-i386 asm) make -C scripts kconfig.tk make[1]: Entering directory `/home/steven/kernels/linux-2.5.9-dj1/scripts' cat header.tk >> ./kconfig.tk ./tkparse < ../arch/i386/config.in >> kconfig.tk drivers/isdn/Config.in: 10: incorrect argument make[1]: *** [kconfig.tk] Error 1 make[1]: Leaving directory `/home/steven/kernels/linux-2.5.9-dj1/scripts' make: *** [xconfig] Error 2
This fix seems to be the obvious one.
Steven
--- linux-2.5.9-dj1/drivers/isdn/Config.in.orig Tue Apr 23 21:14:37 2002 +++ linux-2.5.9-dj1/drivers/isdn/Config.in Tue Apr 23 21:22:10 2002 @@ -7,7 +7,7 @@ if [ "$CONFIG_NET" != "n" ]; then bool 'ISDN support' CONFIG_ISDN_BOOL - if [ "$CONFIG_ISDN_BOOL" == "y" ]; then + if [ "$CONFIG_ISDN_BOOL" = "y" ]; then mainmenu_option next_comment comment 'Old ISDN4Linux'
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |