Browse Source

toolchain: install libgcc for minimal gcc, needed by newer eglibc versions

SVN-Revision: 32100
Felix Fietkau 13 years ago
parent
commit
176c236922
1 changed files with 2 additions and 2 deletions
  1. 2 2
      toolchain/gcc/minimal/Makefile

+ 2 - 2
toolchain/gcc/minimal/Makefile

@@ -30,11 +30,11 @@ define Host/Prepare
 endef
 
 define Host/Compile
-	$(GCC_MAKE) -C $(GCC_BUILD_DIR) all-gcc
+	$(GCC_MAKE) -C $(GCC_BUILD_DIR) all-gcc all-target-libgcc
 endef
 
 define Host/Install
-	$(GCC_MAKE) -C $(GCC_BUILD_DIR) install-gcc
+	$(GCC_MAKE) -C $(GCC_BUILD_DIR) install-gcc install-target-libgcc
 endef
 
 define Host/Clean