X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/fadee18df073a6aebb45852546d6fb37aa9c6b34..74d41dbe9d587491909ac02e745b3670f604bd7f:/toolchain/uClibc/Makefile?ds=sidebyside diff --git a/toolchain/uClibc/Makefile b/toolchain/uClibc/Makefile index b94fc2e71..128074fa9 100644 --- a/toolchain/uClibc/Makefile +++ b/toolchain/uClibc/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2009 OpenWrt.org +# Copyright (C) 2006-2010 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -26,6 +26,8 @@ CONFIG_DIR:=./config-$(PKG_VERSION) PKG_MD5SUM_0.9.30.1 = 1a4b84e5536ad8170563ffa88c34679c PKG_MD5SUM_0.9.30.2 = e759ec855500082ac3e671dd6cacfdb0 +PKG_MD5SUM_0.9.30.3 = 73a4bf4a0fa508b01a7a3143574e3d21 +PKG_MD5SUM_0.9.31 = 52fb8a494758630c8d3ddd7f1e0daafd PKG_MD5SUM=$(PKG_MD5SUM_$(PKG_VERSION)) HOST_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)-$(PKG_VERSION) @@ -58,7 +60,10 @@ define Host/SetToolchainInfo $(SED) 's,^\(LIBC_SO_VERSION\)=.*,\1=$(LIBC_SO_VERSION),' $(TOOLCHAIN_DIR)/info.mk endef -GEN_CONFIG=$(SCRIPT_DIR)/kconfig.pl -n $(if $(wildcard $(CONFIG_DIR)/common),'+' $(CONFIG_DIR)/common) ./$(CONFIG_DIR)/$(ARCH)$(if $(wildcard $(CONFIG_DIR)/$(ARCH).$(BOARD)),.$(BOARD)) +GEN_CONFIG=$(SCRIPT_DIR)/kconfig.pl -n \ + $(if $(wildcard $(CONFIG_DIR)/common),'+' $(CONFIG_DIR)/common) \ + $(if $(CONFIG_UCLIBC_ENABLE_DEBUG),$(if $(wildcard $(CONFIG_DIR)/debug),'+' $(CONFIG_DIR)/debug)) \ + $(CONFIG_DIR)/$(ARCH)$(if $(wildcard $(CONFIG_DIR)/$(ARCH).$(BOARD)),.$(BOARD)) define Host/Prepare $(call Host/SetToolchainInfo) @@ -100,10 +105,6 @@ UCLIBC_MAKE = PATH='$(TARGET_PATH)' $(MAKE) -C $(HOST_BUILD_DIR) \ LIBGCC="$(subst libgcc.a,libgcc_initial.a,$(shell $(TARGET_CC) -print-libgcc-file-name))" \ DOSTRIP="" -ifeq ($(CONFIG_UCLIBC_ENABLE_DEBUG),y) - UCLIBC_MAKE += DODEBUG=y -endif - define Host/Compile $(SED) 's,^CROSS=.*,CROSS=$(TARGET_CROSS),g' $(HOST_BUILD_DIR)/Rules.mak $(UCLIBC_MAKE) PREFIX= all