cross-linkage: Add dummy package to handle linking cross to staging

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2761 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2007-09-19 12:59:01 +00:00
parent c7c2baa7f1
commit 93c82d7f92

View File

@@ -0,0 +1,28 @@
DESCRIPTION = "cross-linkage sets up symlinks between cross and staging so the compiler can find things"
SECTION = "devel"
PACKAGES = ""
INHIBIT_DEFAULT_DEPS = "1"
PR = "r0"
SRC_URI = ""
do_configure() {
:
}
do_compile () {
:
}
do_install() {
:
}
do_stage () {
install -d ${CROSS_DIR}/${TARGET_SYS}/
rm -rf ${CROSS_DIR}/${TARGET_SYS}/include
ln -s ${STAGING_INCDIR}/ ${CROSS_DIR}/${TARGET_SYS}/include
rm -rf ${CROSS_DIR}/${TARGET_SYS}/lib
ln -s ${STAGING_LIBDIR} ${CROSS_DIR}/${TARGET_SYS}/lib
}