diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-09-29 11:00:12 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-09-29 11:00:12 +0000 |
commit | eec0d5dd4e51507e0d7a1e210c8d824452bfe771 (patch) | |
tree | 0842afdb282be4a44ca41540bf1a8756ceb20866 /packages/glibc/glibc-initial_2.5.bb | |
parent | 7518963d4a408a60558f992a2c238ad42df2e634 (diff) |
glibc-initial: Can install to staging instead of cross due to cross-linkage
Diffstat (limited to 'packages/glibc/glibc-initial_2.5.bb')
-rw-r--r-- | packages/glibc/glibc-initial_2.5.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/glibc/glibc-initial_2.5.bb b/packages/glibc/glibc-initial_2.5.bb index 64f8d4a21e..f1b8804f4c 100644 --- a/packages/glibc/glibc-initial_2.5.bb +++ b/packages/glibc/glibc-initial_2.5.bb @@ -31,14 +31,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 () { |