diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-06-10 20:27:34 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-06-10 20:27:34 +0000 |
commit | 184d669fb3f3dc845c0b7d7fcefdadcddc142462 (patch) | |
tree | fe04e035543eefb1389f915a7aba568ed98ba225 | |
parent | 72a78551c5cdd7ed87ff9abab773f0053d37bae3 (diff) | |
download | upstream-184d669fb3f3dc845c0b7d7fcefdadcddc142462.tar.gz upstream-184d669fb3f3dc845c0b7d7fcefdadcddc142462.tar.bz2 upstream-184d669fb3f3dc845c0b7d7fcefdadcddc142462.zip |
toolchain: fix libc dependency on libgcc
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32170 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/toolchain/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/toolchain/Makefile b/package/toolchain/Makefile index 879f6da5c4..227f302a9f 100644 --- a/package/toolchain/Makefile +++ b/package/toolchain/Makefile @@ -111,7 +111,7 @@ define Package/libc/Default SECTION:=libs CATEGORY:=Base system VERSION:=$(LIBC_VERSION)-$(PKG_RELEASE) -ifneq ($(TARGET_avr32)$(TARGET_coldfire),) +ifeq ($(TARGET_avr32)$(TARGET_coldfire),) DEPENDS:=+libgcc endif URL:=$(LIBC_URL) |