surpport seeking the recorded video
[vuplus_openembedded] / recipes / glibc / glibc-stage.inc
1 do_stage() {
2         rm -f ${STAGING_DIR_HOST}${layout_base_libdir}/libc.so.6
3         oe_runmake 'install_root=${STAGING_DIR_HOST}' \
4                    'includedir=${layout_includedir}' 'libdir=${layout_libdir}' 'slibdir=${layout_base_libdir}' \
5                    '${STAGING_DIR_HOST}${layout_base_libdir}/libc.so.6' \
6                    install
7
8         # "make install" omits some (not all) RPC headers that other distros
9         # ship.
10         install -d ${STAGING_INCDIR}/rpcsvc
11
12         for r in ${rpcsvc}; do
13                 h=`echo $r|sed -e's,\.x$,.h,'`
14                 install -m 0644 ${S}/sunrpc/rpcsvc/$h ${STAGING_INCDIR}/rpcsvc/
15         done
16 }