[PATCH] translate dashes in filenames for headers install

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 _

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Mike Frysinger and committed by Linus Torvalds ec268be3 0d59a01b

+1 -1
+1 -1
scripts/Makefile.headersinst
··· 109 109 quiet_cmd_gen = GEN $(patsubst $(INSTALL_HDR_PATH)/%,%,$@) 110 110 cmd_gen = \ 111 111 FNAME=$(patsubst $(INSTALL_HDR_PATH)/$(_dst)/%,%,$@) \ 112 - STUBDEF=__ASM_STUB_`echo $$FNAME | tr a-z. A-Z_`; \ 112 + STUBDEF=__ASM_STUB_`echo $$FNAME | tr a-z.- A-Z__`; \ 113 113 (echo "/* File autogenerated by 'make headers_install' */" ; \ 114 114 echo "\#ifndef $$STUBDEF" ; \ 115 115 echo "\#define $$STUBDEF" ; \