mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 00:32:13 +02: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:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user