diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-12-17 20:43:16 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-05-05 14:44:53 +0100 |
commit | eb5a0f5a54334f3403a01c3cae61cd648229f870 (patch) | |
tree | 9fa5bc6f4db07f11b5c89ae602d9c135f170547b | |
parent | 6ccaf4b86c84338e8a7c97cca055b7f899ea83ee (diff) |
glibc: Remove now unneeded legacy staging function (from Poky)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | recipes/glibc/glibc-stage.inc | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/recipes/glibc/glibc-stage.inc b/recipes/glibc/glibc-stage.inc index cb9ab04e1f..e69de29bb2 100644 --- a/recipes/glibc/glibc-stage.inc +++ b/recipes/glibc/glibc-stage.inc @@ -1,16 +0,0 @@ -do_stage() { - rm -f ${STAGING_DIR_HOST}${layout_base_libdir}/libc.so.6 - oe_runmake 'install_root=${STAGING_DIR_HOST}' \ - 'includedir=${layout_includedir}' 'libdir=${layout_libdir}' 'slibdir=${layout_base_libdir}' \ - '${STAGING_DIR_HOST}${layout_base_libdir}/libc.so.6' \ - install - - # "make install" omits some (not all) RPC headers that other distros - # ship. - install -d ${STAGING_INCDIR}/rpcsvc - - for r in ${rpcsvc}; do - h=`echo $r|sed -e's,\.x$,.h,'` - install -m 0644 ${S}/sunrpc/rpcsvc/$h ${STAGING_INCDIR}/rpcsvc/ - done -} |