diff options
author | YamaArashi <shadow962@live.com> | 2016-06-17 13:51:01 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-06-17 13:51:01 -0700 |
commit | d3de54b9e1cf35ce1cf248d30fa6b6a90f7849fd (patch) | |
tree | 1fc99852637fe446f38c54b91aa5cc16ed81a2c4 /libgcc | |
parent | a761374c43d27ab09f95ac1c4047c8c6fe302fc8 (diff) |
add bash -c on two more lines
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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 |