X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=toolchain%2Feglibc%2FMakefile;h=4cc22200b2806412201bc16bca3cb6897c179fb5;hb=ec3dfcb255d444f7c6dfa1d41bf32e7bf17c8065;hp=b72b4bd3567816e0a92406a45faa3e5f6b0dad91;hpb=4e94330d217d42c725bd468e68fc3091788e6563;p=openwrt-10.03%2F.git diff --git a/toolchain/eglibc/Makefile b/toolchain/eglibc/Makefile index b72b4bd35..4cc22200b 100644 --- a/toolchain/eglibc/Makefile +++ b/toolchain/eglibc/Makefile @@ -30,6 +30,9 @@ endif ifneq ($(CONFIG_EGLIBC_VERSION_2_10),) PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_10 endif +ifneq ($(CONFIG_EGLIBC_VERSION_2_11),) + PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_11 +endif ifneq ($(CONFIG_EGLIBC_VERSION_TRUNK),) PKG_SOURCE_URL:=svn://svn.eglibc.org/trunk endif @@ -56,10 +59,10 @@ EGLIBC_CONFIGURE:= \ CFLAGS="$(EGLIBC_CFLAGS)" \ libc_cv_slibdir="/lib" \ $(HOST_BUILD_DIR)/libc/configure \ - --prefix=/usr \ + --prefix= \ --build=$(GNU_HOST_NAME) \ --host=$(REAL_GNU_TARGET_NAME) \ - --with-headers=$(TOOLCHAIN_DIR)/usr/include \ + --with-headers=$(TOOLCHAIN_DIR)/include \ --disable-profile \ --without-gd \ --without-cvs \ @@ -96,7 +99,7 @@ define Stage1/Compile endef define Stage1/Install - mkdir -p $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/usr/{include,lib} + mkdir -p $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/{include,lib} $(EGLIBC_MAKE) -C $(HOST_BUILD_DIR1) \ install_root="$(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev" \ install-bootstrap-headers=yes \ @@ -104,10 +107,10 @@ define Stage1/Install $(EGLIBC_MAKE) -C $(HOST_BUILD_DIR1) \ csu/subdir_lib ( cd $(HOST_BUILD_DIR1); \ - $(CP) csu/crt1.o csu/crti.o csu/crtn.o $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/usr/lib/ \ + $(CP) csu/crt1.o csu/crti.o csu/crtn.o $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/lib/ \ ) $(TARGET_CC) -nostdlib -nostartfiles -shared -x c /dev/null \ - -o $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/usr/lib/libc.so + -o $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/lib/libc.so endef define Stage2/Configure