mirror of
git://git.yoctoproject.org/poky
synced 2026-08-12 13:59:53 +00:00
db-native: Add custom stage function
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4082 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
parent
ce1e2f2df5
commit
1cdaf69d92
@ -10,4 +10,15 @@ require db_${PV}.bb
|
||||
|
||||
inherit native
|
||||
|
||||
PACKAGES = ""
|
||||
do_stage() {
|
||||
# The .h files get installed read-only, the autostage
|
||||
# function just uses cp -pPR, so do this by hand
|
||||
rm -rf ${STAGE_TEMP}
|
||||
mkdir -p ${STAGE_TEMP}
|
||||
oe_runmake DESTDIR="${STAGE_TEMP}" install_include
|
||||
cp -pPRf ${STAGE_TEMP}/${includedir}/* ${STAGING_INCDIR}/.
|
||||
rm -rf ${STAGE_TEMP}
|
||||
oe_libinstall -so -C .libs libdb-4.2 ${STAGING_LIBDIR}
|
||||
ln -sf libdb-4.2.so ${STAGING_LIBDIR}/libdb.so
|
||||
ln -sf libdb-4.2.a ${STAGING_LIBDIR}/libdb.a
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user