public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] 2.5.9-dj1, fix for make xconfig in drivers/isdn/Config.in
@ 2002-04-24  3:31 Steven Cole
  2002-04-25  9:17 ` A Guy Called Tyketto
  0 siblings, 1 reply; 2+ messages in thread
From: Steven Cole @ 2002-04-24  3:31 UTC (permalink / raw)
  To: Dave Jones; +Cc: linux-kernel

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'
 




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-04-25  9:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-04-24  3:31 [PATCH] 2.5.9-dj1, fix for make xconfig in drivers/isdn/Config.in Steven Cole
2002-04-25  9:17 ` A Guy Called Tyketto

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox