From c14ed426ca21fa7893da16fed7d68121ed563a78 Mon Sep 17 00:00:00 2001 From: deadwood Date: Sun, 25 Dec 2016 17:21:09 +0000 Subject: [PATCH] asm.h: use only .asciz sections of the .s file When compiling debug armhf builds, .ascii sections where added which in turned caused the generated asm.h file to contain garbage. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@53102 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- compiler/include/mmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/include/mmakefile b/compiler/include/mmakefile index ed5af65dc3..8ff48c664f 100644 --- a/compiler/include/mmakefile +++ b/compiler/include/mmakefile @@ -99,7 +99,7 @@ $(OBJDIR)/asm.s : asm.c | $(OBJDIR) $(GENINCDIR)/aros/$(CPU)/asm.h : $(OBJDIR)/asm.s | $(GENINCDIR)/aros/$(AROS_TARGET_CPU) @$(ECHO) Generating $@... - grep ".asci" $< | cut -d'"' -f2 | sed 's/\$$//g' >$@ + grep ".asciz" $< | cut -d'"' -f2 | sed 's/\$$//g' >$@ $(OBJDIR) : @$(MKDIR) $@ -- 2.11.4.GIT