The patch titled translate dashes in filenames for headers install has been removed from the -mm tree. Its filename was translate-dashes-in-filenames-for-headers-install.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: translate dashes in filenames for headers install From: Mike Frysinger <vapier@xxxxxxxxxx> 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@xxxxxxxxxx> Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- scripts/Makefile.headersinst | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/Makefile.headersinst~translate-dashes-in-filenames-for-headers-install scripts/Makefile.headersinst --- a/scripts/Makefile.headersinst~translate-dashes-in-filenames-for-headers-install +++ a/scripts/Makefile.headersinst @@ -109,7 +109,7 @@ quiet_cmd_mkdir = MKDIR $(patsubst 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" ; \ _ Patches currently in -mm which might be from vapier@xxxxxxxxxx are alpha-fix-epoll-syscall-enumerations.patch search-a-little-harder-for-mkimage.patch new-toplevel-target-headers_check_all.patch use-__u64-rather-than-u64-in-parisc-statfs-structs.patch use-__u32-rather-than-u32-in-userspace-ioctls-in-usbdevice_fsh.patch use-__u32-in-asm-x86_64-msrh.patch some-rtc-documentation-updates.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html