From: Richard Purdie Date: Thu, 17 Dec 2009 20:43:16 +0000 (+0000) Subject: glibc: Remove now unneeded legacy staging function (from Poky) X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb5a0f5a54334f3403a01c3cae61cd648229f870;p=openembedded.git glibc: Remove now unneeded legacy staging function (from Poky) Signed-off-by: Richard Purdie --- 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 -}