LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [patch] translate dashes in filenames for headers install
@ 2007-01-29 19:58 Mike Frysinger
0 siblings, 0 replies; only message in thread
From: Mike Frysinger @ 2007-01-29 19:58 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel
[-- Attachment #1.1: Type: text/plain, Size: 283 bytes --]
the current filename->define translation does not scrub dashes so when
creating stub defines for like asm-x86_64/ptrace-abi.h, we get:
#define __ASM_STUB_PTRACE-ABI_H
gcc just hates that sort of thing :)
trivial attached patch adds - to the tr list to scrub it to _
-mike
[-- Attachment #1.2: Type: application/pgp-signature, Size: 827 bytes --]
[-- Attachment #2: linux-headersinst-translate-dash.patch --]
[-- Type: text/x-diff, Size: 685 bytes --]
Make sure we translate dashes in file names to underscores for use as defines.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
--- a/scripts/Makefile.headersinst
+++ b/scripts/Makefile.headersinst
@@ -109,7 +109,7 @@ quiet_cmd_mkdir = MKDIR $(patsubst $(INSTALL_HDR_PATH)/%,%,$@)
quiet_cmd_gen = GEN $(patsubst $(INSTALL_HDR_PATH)/%,%,$@)
cmd_gen = \
FNAME=$(patsubst $(INSTALL_HDR_PATH)/$(_dst)/%,%,$@) \
-STUBDEF=__ASM_STUB_`echo $$FNAME | tr a-z. A-Z_`; \
+STUBDEF=__ASM_STUB_`echo $$FNAME | tr a-z.- A-Z__`; \
(echo "/* File autogenerated by 'make headers_install' */" ; \
echo "\#ifndef $$STUBDEF" ; \
echo "\#define $$STUBDEF" ; \
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-01-29 19:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-01-29 19:58 [patch] translate dashes in filenames for headers install Mike Frysinger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).