summaryrefslogtreecommitdiffstats
path: root/meta/classes/cross.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/cross.bbclass')
-rw-r--r--meta/classes/cross.bbclass7
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/classes/cross.bbclass b/meta/classes/cross.bbclass
index f9fd07a9a2..81358ec8dd 100644
--- a/meta/classes/cross.bbclass
+++ b/meta/classes/cross.bbclass
@@ -38,11 +38,12 @@ DEPENDS_GETTEXT = "gettext-native"
38# Path mangling needed by the cross packaging 38# Path mangling needed by the cross packaging
39# Note that we use := here to ensure that libdir and includedir are 39# Note that we use := here to ensure that libdir and includedir are
40# target paths. 40# target paths.
41target_libdir := "${libdir}" 41target_base_prefix := "${base_prefix}"
42target_includedir := "${includedir}"
43target_base_libdir := "${base_libdir}"
44target_prefix := "${prefix}" 42target_prefix := "${prefix}"
45target_exec_prefix := "${exec_prefix}" 43target_exec_prefix := "${exec_prefix}"
44target_base_libdir = "${target_base_prefix}/${baselib}"
45target_libdir = "${target_exec_prefix}/${baselib}"
46target_includedir := "${includedir}"
46 47
47# Overrides for paths 48# Overrides for paths
48CROSS_TARGET_SYS_DIR = "${MULTIMACH_TARGET_SYS}" 49CROSS_TARGET_SYS_DIR = "${MULTIMACH_TARGET_SYS}"