From d3de54b9e1cf35ce1cf248d30fa6b6a90f7849fd Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Fri, 17 Jun 2016 13:51:01 -0700 Subject: add bash -c on two more lines --- libgcc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libgcc') diff --git a/libgcc/Makefile b/libgcc/Makefile index 72a99f8..8e4667e 100644 --- a/libgcc/Makefile +++ b/libgcc/Makefile @@ -55,7 +55,7 @@ fp-bit.o: fp-bit.c $(CPP) -undef -I ../ginclude -nostdinc -o fp-bit.i fp-bit.c $(CC1) -O2 fp-bit.i rm -f fp-bit.i - echo -e ".text\n\t.align\t2, 0\n" >> fp-bit.s + bash -c 'echo -e ".text\n\t.align\t2, 0\n"' >> fp-bit.s $(AS) -mcpu=arm7tdmi -o fp-bit.o fp-bit.s rm -f fp-bit.s @@ -63,7 +63,7 @@ dp-bit.o: dp-bit.c $(CPP) -undef -I ../ginclude -nostdinc -o dp-bit.i dp-bit.c $(CC1) -O2 dp-bit.i rm -f dp-bit.i - echo -e ".text\n\t.align\t2, 0\n" >> dp-bit.s + bash -c 'echo -e ".text\n\t.align\t2, 0\n"' >> dp-bit.s $(AS) -mcpu=arm7tdmi -o dp-bit.o dp-bit.s rm -f dp-bit.s -- cgit v1.2.3