From: Matthew Wilcox <willy@debian.org>
To: linux-kernel@vger.kernel.org
Cc: Kai Germaschewski <kai-germaschewski@uiowa.edu>
Subject: invalid character 45 in exportstr for include-config
Date: Sun, 3 Nov 2002 03:18:35 +0000 [thread overview]
Message-ID: <20021103031835.Q20749@parcelfarce.linux.theplanet.co.uk> (raw)
Anyone else seeing this error message? I figured out what it _actually_
means is that the character `-' is not permitted in the symbol being
exported. so if we change include-config to include_config in Makefile
and scripts/Makefile.build, everything is fine.
How about the following patch?
diff -u -p -r1.1.2.6 Makefile
--- Makefile 31 Oct 2002 17:26:55 -0000 1.1.2.6
+++ Makefile 3 Nov 2002 03:15:06 -0000
@@ -214,7 +216,7 @@ SUBDIRS :=
ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
-export include-config := 1
+export include_config := 1
-include .config
diff -u -p -r1.1.2.1 Makefile.build
--- scripts/Makefile.build 31 Oct 2002 17:28:39 -0000 1.1.2.1
+++ scripts/Makefile.build 3 Nov 2002 03:15:06 -0000
@@ -7,7 +7,7 @@ src := $(obj)
.PHONY: __build
__build:
-ifdef include-config
+ifdef include_config
include .config
endif
--
Revolutions do not require corporate support.
next reply other threads:[~2002-11-03 3:12 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-11-03 3:18 Matthew Wilcox [this message]
2002-11-03 6:20 ` invalid character 45 in exportstr for include-config David S. Miller
2002-11-03 7:40 ` Keith Owens
2002-11-03 19:17 ` Kai Germaschewski
2002-11-03 19:22 ` Pete Zaitcev
2002-11-04 6:50 ` David S. Miller
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=20021103031835.Q20749@parcelfarce.linux.theplanet.co.uk \
--to=willy@debian.org \
--cc=kai-germaschewski@uiowa.edu \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox