diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-09-20 19:22:07 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-09-20 19:22:07 +0200 |
commit | feb521846269734c771e68e5406662f80d7dd2a5 (patch) | |
tree | 937ecae52b31fbd7c755866fd867a654fd0048bd /package/glibc | |
parent | d8cfe503249af76a3a029bcda1c20655d8b7dc20 (diff) |
fix header install
Diffstat (limited to 'package/glibc')
-rw-r--r-- | package/glibc/Makefile | 37 |
1 files changed, 28 insertions, 9 deletions
diff --git a/package/glibc/Makefile b/package/glibc/Makefile index 595ac3eda..9cd8748b8 100644 --- a/package/glibc/Makefile +++ b/package/glibc/Makefile @@ -11,6 +11,22 @@ PKG_OPTS:= noremove include $(TOPDIR)/mk/package.mk +GLIBC_CONFOPTS:= \ + --build=$(GNU_HOST_NAME) \ + --host=$(REAL_GNU_TARGET_NAME) \ + --with-headers=$(TOOLCHAIN_SYSROOT)/usr/include \ + --disable-nls \ + --disable-sanity-checks \ + --disable-nls \ + --without-cvs \ + --disable-profile \ + --disable-debug \ + --without-gd \ + --with-__thread \ + --with-tls \ + --enable-kernel="2.6.0" \ + --enable-add-ons + $(eval $(call PKG_template,GLIBC,glibc,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS})) do-extract: @@ -35,14 +51,17 @@ endif $(MAKE) -C $(TOOLCHAIN_BUILD_DIR)/linux-$(KERNEL_VERSION) ARCH=$(ARCH) V=1 \ INSTALL_HDR_PATH=$(IDIR_GLIBC_DEV)/usr \ headers_install - $(MAKE) -C $(TOOLCHAIN_BUILD_DIR)/${PKG_NAME}-${PKG_VERSION} \ - PREFIX=$(IDIR_GLIBC_DEV)/ \ - DEVEL_PREFIX=/usr/ \ - RUNTIME_PREFIX=$(IDIR_GLIBC_DEV)/ \ - HOSTCC="$(HOSTCC)" \ - CPU_CFLAGS="$(TARGET_CFLAGS)" \ - install_headers - @find $(IDIR_GLIBC_DEV) -name .install -delete - @find $(IDIR_GLIBC_DEV) -name ..install.cmd -delete + (cd $(WRKBUILD); \ + $(TOOLCHAIN_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/configure \ + --prefix=/usr \ + --with-sysroot=$(IDIR_GLIBC_DEV) \ + ${GLIBC_CONFOPTS} \ + ); + $(MAKE) -C $(WRKBUILD) \ + cross-compiling=yes \ + install_root=$(IDIR_GLIBC_DEV) \ + install-headers + touch $(IDIR_GLIBC_DEV)/usr/include/gnu/stubs.h + touch $(IDIR_GLIBC_DEV)/usr/include/bits/stdio_lim.h include ${TOPDIR}/mk/pkg-bottom.mk |