diff options
author | Richard Purdie <richard@openedhand.com> | 2007-11-14 22:31:45 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-11-14 22:31:45 +0000 |
commit | 8813097d43e20d650148636c1dfa651a0b7924f5 (patch) | |
tree | 9ebc1e7a1a1b3ca5f36f146c3ffca6398c9102cc | |
parent | 5dfe764664874280a006e1f27ffd8762c53242fc (diff) | |
download | openembedded-core-8813097d43e20d650148636c1dfa651a0b7924f5.tar.gz openembedded-core-8813097d43e20d650148636c1dfa651a0b7924f5.tar.bz2 openembedded-core-8813097d43e20d650148636c1dfa651a0b7924f5.zip |
glibc-initial.inc: Fix bogus header directory reference
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3168 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/packages/glibc/glibc-initial.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/packages/glibc/glibc-initial.inc b/meta/packages/glibc/glibc-initial.inc index 288cb082a5..e30e86b5e8 100644 --- a/meta/packages/glibc/glibc-initial.inc +++ b/meta/packages/glibc/glibc-initial.inc @@ -11,7 +11,7 @@ do_configure () { chmod +x ${S}/configure CC="${BUILD_CC}" CPP="${BUILD_CPP}" LD="${BUILD_LD}" ${S}/configure --host=${TARGET_SYS} --build=${BUILD_SYS} \ --without-cvs --disable-sanity-checks \ - --with-headers=${CROSS_DIR}/${TARGET_SYS}/include \ + --with-headers=${STAGING_DIR_TARGET}${layout_includedir} \ --enable-hacker-mode if grep -q GLIBC_2.3 ${S}/ChangeLog; then # glibc-2.3.x passes cross options to $(CC) when generating errlist-compat.c, which fails without a real cross-compiler. |