summaryrefslogtreecommitdiff
path: root/meta/packages/glibc/glibc-initial_2.4.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-09-19 13:02:25 +0000
committerRichard Purdie <richard@openedhand.com>2007-09-19 13:02:25 +0000
commite32f910a5be9614f50e860fbd78ea1627555e038 (patch)
treee04fcba0d41835179024ff264428e1b7c2e91607 /meta/packages/glibc/glibc-initial_2.4.bb
parent405a6a68a644bdbdf303bca95d24e668efcfd2e5 (diff)
downloadopenembedded-core-e32f910a5be9614f50e860fbd78ea1627555e038.tar.gz
openembedded-core-e32f910a5be9614f50e860fbd78ea1627555e038.tar.bz2
openembedded-core-e32f910a5be9614f50e860fbd78ea1627555e038.tar.xz
openembedded-core-e32f910a5be9614f50e860fbd78ea1627555e038.zip
glibc-initial: Install headers into staging, not cross
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2764 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/glibc/glibc-initial_2.4.bb')
-rw-r--r--meta/packages/glibc/glibc-initial_2.4.bb8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/packages/glibc/glibc-initial_2.4.bb b/meta/packages/glibc/glibc-initial_2.4.bb
index ff458d328..861478f7d 100644
--- a/meta/packages/glibc/glibc-initial_2.4.bb
+++ b/meta/packages/glibc/glibc-initial_2.4.bb
@@ -32,14 +32,14 @@ do_compile () {
}
do_stage () {
- oe_runmake cross-compiling=yes install_root=${CROSS_DIR}/${TARGET_SYS} prefix="" install-headers
+ oe_runmake cross-compiling=yes install_root=${STAGING_DIR}/${HOST_SYS} includedir=/include prefix="" install-headers
# Two headers -- stubs.h and features.h -- aren't installed by install-headers,
# so do them by hand. We can tolerate an empty stubs.h for the moment.
# See e.g. http://gcc.gnu.org/ml/gcc/2002-01/msg00900.html
- mkdir -p ${CROSS_DIR}/${TARGET_SYS}/include/gnu
- touch ${CROSS_DIR}/${TARGET_SYS}/include/gnu/stubs.h
- cp ${S}/include/features.h ${CROSS_DIR}/${TARGET_SYS}/include/features.h
+ mkdir -p ${STAGING_DIR}/${HOST_SYS}/include/gnu
+ touch ${STAGING_DIR}/${HOST_SYS}/include/gnu/stubs.h
+ cp ${S}/include/features.h ${STAGING_DIR}/${HOST_SYS}/include/features.h
}
do_install () {