From: A Guy Called Tyketto <tyketto@wizard.com>
To: mikej163@attbi.com
Cc: linux-kernel@vger.kernel.org
Subject: Re: PROBLEM: make xconfig fails on link
Date: Tue, 23 Apr 2002 20:19:00 -0700 [thread overview]
Message-ID: <20020424031900.GA6731@wizard.com> (raw)
In-Reply-To: <20020423232908.33CF556A5A@C242326-a.attbi.com>
On Tue, Apr 23, 2002 at 04:29:00PM -0700, Michael D. Johnson wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> [1] make xconfig fails to link active during fresh install/rebuild on 2.5.9
> this worked on 2.5.7 but not here.
> [2] see above
> [3] Key Word: xconfig
> [4] Version: 2.4.8-34.1mdk #1 Mon Nov 19 12:40:39 MST 2001 i686 unknown
> [Duron 700 Mhz]
> [5] Error reported : make xconfig
> rm -f include/asm
> ( cd include ; ln -sf asm-i386 asm)
> make -C scripts kconfig.tk
> make[1]: Entering directory `/usr/src/linux-new/linux-2.5.9/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 `/usr/src/linux-new/linux-2.5.9/scripts'
> make: *** [xconfig] Error 2
I had the same problem with xconfig when I rolled 2.5.9. A bit more
looking into it made me wonder about the conditional of Config.in on that
line. Currently shows:
if [ "$CONFIG_ISDN_BOOL" == "y" ]; then
I reversed this condition to make it != "y", and it worked. See below
for patch. I'm not sure if this is correct, because I'm not that familiar with
it (though I should!) but it made make xconfig work for me again. YMMV.
BL.
--- linux/drivers/isdn/Config.in.borked Tue Apr 23 20:12:58 2002
+++ linux/drivers/isdn/Config.in Mon Apr 22 18:46:45 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'
--
Brad Littlejohn | Email: tyketto@wizard.com
Unix Systems Administrator, | tyketto@ozemail.com.au
Web + NewsMaster, BOFH.. Smeghead! :) | http://www.wizard.com/~tyketto
PGP: 1024D/E319F0BF 6980 AAD6 7329 E9E6 D569 F620 C819 199A E319 F0BF
next prev parent reply other threads:[~2002-04-24 3:19 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-04-23 23:29 PROBLEM: make xconfig fails on link Michael D. Johnson
2002-04-24 3:19 ` A Guy Called Tyketto [this message]
2002-04-24 3:46 ` Michael D. Johnson
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=20020424031900.GA6731@wizard.com \
--to=tyketto@wizard.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mikej163@attbi.com \
/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.