diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-28 14:05:29 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-28 14:05:29 +0000 |
commit | 0629a673ae2380274fcc73205ebb19bd5494b786 (patch) | |
tree | 8822aff71a8a8462b56c35c66c6df8245ed22ed9 | |
parent | f31f1e4db4bcc3b40567741621a3b4c3c58cbb4f (diff) | |
download | buildroot-novena-0629a673ae2380274fcc73205ebb19bd5494b786.tar.gz buildroot-novena-0629a673ae2380274fcc73205ebb19bd5494b786.zip |
- work around bug in gcc (or rather libiberty) for parallel install
-rw-r--r-- | toolchain/gcc/gcc-uclibc-4.x.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/gcc/gcc-uclibc-4.x.mk b/toolchain/gcc/gcc-uclibc-4.x.mk index 5ab192e8b..c57b5ab86 100644 --- a/toolchain/gcc/gcc-uclibc-4.x.mk +++ b/toolchain/gcc/gcc-uclibc-4.x.mk @@ -400,7 +400,7 @@ endif $(TARGET_DIR)/usr/bin/gcc: $(GCC_BUILD_DIR3)/.compiled PATH=$(TARGET_PATH) DESTDIR=$(TARGET_DIR) \ - $(MAKE) -C $(GCC_BUILD_DIR3) install + $(MAKE1) -C $(GCC_BUILD_DIR3) install # Remove broken specs file (cross compile flag is set). rm -f $(TARGET_DIR)/usr/$(GCC_LIB_SUBDIR)/specs # |