All of lore.kernel.org
 help / color / mirror / Atom feed
From: Steven Cole <elenstev@mesatop.com>
To: Dave Jones <davej@suse.de>
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH] 2.5.9-dj1, fix for make xconfig in drivers/isdn/Config.in
Date: 23 Apr 2002 21:31:59 -0600	[thread overview]
Message-ID: <1019619120.29017.15.camel@localhost.localdomain> (raw)

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'
 




             reply	other threads:[~2002-04-24  3:34 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-04-24  3:31 Steven Cole [this message]
2002-04-25  9:17 ` [PATCH] 2.5.9-dj1, fix for make xconfig in drivers/isdn/Config.in A Guy Called Tyketto

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1019619120.29017.15.camel@localhost.localdomain \
    --to=elenstev@mesatop.com \
    --cc=davej@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.