diff options
Diffstat (limited to 'arch/sh/tools/Makefile')
-rw-r--r-- | arch/sh/tools/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sh/tools/Makefile b/arch/sh/tools/Makefile index 567516b58acc..2082af1f3fef 100644 --- a/arch/sh/tools/Makefile +++ b/arch/sh/tools/Makefile @@ -10,7 +10,7 @@ # Shamelessly cloned from ARM. # -include/asm-sh/machtypes.h: $(src)/gen-mach-types $(src)/mach-types +include/generated/machtypes.h: $(src)/gen-mach-types $(src)/mach-types @echo ' Generating $@' - $(Q)if [ ! -d include/asm-sh ]; then mkdir -p include/asm-sh; fi - $(Q)$(AWK) -f $^ > $@ || { rm -f $@; /bin/false; } + $(Q)mkdir -p $(dir $@) + $(Q)LC_ALL=C $(AWK) -f $^ > $@ || { rm -f $@; /bin/false; } |