summaryrefslogtreecommitdiffstats
path: root/toolchain/gcc/minimal
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-06-07 12:24:13 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-06-07 12:24:13 +0000
commite687ad62c78bb1b6e04280fb9f2adac6428112cb (patch)
treebd662062c7d8a1452b8e651a3bf7589b13d2c865 /toolchain/gcc/minimal
parentded44978b7a4fd5825e3734987f2e4813783a821 (diff)
toolchain: install libgcc for minimal gcc, needed by newer eglibc versions
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32100 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/gcc/minimal')
-rw-r--r--toolchain/gcc/minimal/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/gcc/minimal/Makefile b/toolchain/gcc/minimal/Makefile
index 9b978deda..45c8993ec 100644
--- a/toolchain/gcc/minimal/Makefile
+++ b/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