summaryrefslogtreecommitdiffstats
path: root/meta/classes/staging.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/staging.bbclass')
-rw-r--r--meta/classes/staging.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass
index 574700260f..65499283da 100644
--- a/meta/classes/staging.bbclass
+++ b/meta/classes/staging.bbclass
@@ -24,7 +24,7 @@ SYSROOT_DIRS:append:class-cross = " ${SYSROOT_DIRS_NATIVE}"
24SYSROOT_DIRS:append:class-crosssdk = " ${SYSROOT_DIRS_NATIVE}" 24SYSROOT_DIRS:append:class-crosssdk = " ${SYSROOT_DIRS_NATIVE}"
25 25
26# These directories will not be staged in the sysroot 26# These directories will not be staged in the sysroot
27SYSROOT_DIRS_BLACKLIST = " \ 27SYSROOT_DIRS_IGNORE = " \
28 ${mandir} \ 28 ${mandir} \
29 ${docdir} \ 29 ${docdir} \
30 ${infodir} \ 30 ${infodir} \
@@ -65,7 +65,7 @@ sysroot_stage_dirs() {
65 done 65 done
66 66
67 # Remove directories we do not care about 67 # Remove directories we do not care about
68 for dir in ${SYSROOT_DIRS_BLACKLIST}; do 68 for dir in ${SYSROOT_DIRS_IGNORE}; do
69 rm -rf "$to$dir" 69 rm -rf "$to$dir"
70 done 70 done
71} 71}