summaryrefslogtreecommitdiffstats
path: root/meta/recipes-tbd/meta/staging-linkage_1.0.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-tbd/meta/staging-linkage_1.0.bb')
-rw-r--r--meta/recipes-tbd/meta/staging-linkage_1.0.bb27
1 files changed, 0 insertions, 27 deletions
diff --git a/meta/recipes-tbd/meta/staging-linkage_1.0.bb b/meta/recipes-tbd/meta/staging-linkage_1.0.bb
deleted file mode 100644
index 9ecc0d5af1..0000000000
--- a/meta/recipes-tbd/meta/staging-linkage_1.0.bb
+++ /dev/null
@@ -1,27 +0,0 @@
1DESCRIPTION = "staging-linkage sets up symlinks in staging so old compilers continue to work with the sysroot staging layout changes"
2SECTION = "devel"
3PACKAGES = ""
4
5INHIBIT_DEFAULT_DEPS = "1"
6EXCLUDE_FROM_WORLD = "1"
7PR = "r0"
8
9SRC_URI = ""
10
11do_configure() {
12 :
13}
14
15do_compile () {
16 :
17}
18
19PSTAGING_DISABLED = "1"
20
21do_install () {
22 if [ -e ${STAGING_DIR_HOST}${base_libdir} ]; then
23 cp -pPRr ${STAGING_DIR_HOST}${base_libdir}/* ${STAGING_LIBDIR}
24 mv ${STAGING_DIR_HOST}${base_libdir}/ ${STAGING_DIR_HOST}${libdir}-oldbackup
25 fi
26 ln -s ${STAGING_LIBDIR}/ ${STAGING_DIR_HOST}${base_libdir}
27}