summaryrefslogtreecommitdiff
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-03-11 00:08:58 +0000
committerRichard Purdie <richard@openedhand.com>2008-03-11 00:08:58 +0000
commit95d8d6b2609ae4a1985e6781a06768ebdb3361b3 (patch)
treeb585ed12ebf128bfc1db9a9f33f67ac25e52c4a1 /meta
parentbeeeb785a7f160ecdca158433a115e9918854858 (diff)
downloadopenembedded-core-95d8d6b2609ae4a1985e6781a06768ebdb3361b3.tar.gz
openembedded-core-95d8d6b2609ae4a1985e6781a06768ebdb3361b3.tar.bz2
openembedded-core-95d8d6b2609ae4a1985e6781a06768ebdb3361b3.tar.xz
openembedded-core-95d8d6b2609ae4a1985e6781a06768ebdb3361b3.zip
staging-linkage: Add from OE
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3987 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r--meta/packages/meta/staging-linkage_1.0.bb29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/packages/meta/staging-linkage_1.0.bb b/meta/packages/meta/staging-linkage_1.0.bb
new file mode 100644
index 000000000..95d82d327
--- /dev/null
+++ b/meta/packages/meta/staging-linkage_1.0.bb
@@ -0,0 +1,29 @@
+DESCRIPTION = "staging-linkage sets up symlinks in staging so old compilers continue to work with the sysroot staging layout changes"
+SECTION = "devel"
+PACKAGES = ""
+
+INHIBIT_DEFAULT_DEPS = "1"
+EXCLUDE_FROM_WORLD = "1"
+PR = "r0"
+
+SRC_URI = ""
+
+do_configure() {
+ :
+}
+
+do_compile () {
+ :
+}
+
+do_install() {
+ :
+}
+
+do_stage () {
+ if [ -e ${STAGING_DIR_HOST}${layout_base_libdir} ]; then
+ cp -pPRr ${STAGING_DIR_HOST}${layout_base_libdir}/* ${STAGING_LIBDIR}
+ mv ${STAGING_DIR_HOST}${layout_base_libdir}/ ${STAGING_DIR_HOST}${layout_libdir}-oldbackup
+ fi
+ ln -s ${STAGING_LIBDIR}/ ${STAGING_DIR_HOST}${layout_base_libdir}
+}