diff options
Diffstat (limited to 'meta/recipes-devtools/gcc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-common.inc | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-package-cross.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes-devtools/gcc/gcc-common.inc index bf6c2398e8..f550aab27a 100644 --- a/meta/recipes-devtools/gcc/gcc-common.inc +++ b/meta/recipes-devtools/gcc/gcc-common.inc | |||
@@ -79,7 +79,7 @@ do_clean[lockfiles] = "${SW}.clean.lock" | |||
79 | 79 | ||
80 | python workshared_clean () { | 80 | python workshared_clean () { |
81 | """clear the source directory""" | 81 | """clear the source directory""" |
82 | dir = bb.data.expand("${SW}", d) | 82 | dir = d.expand("${SW}") |
83 | bb.note("Removing " + dir) | 83 | bb.note("Removing " + dir) |
84 | oe.path.remove(dir) | 84 | oe.path.remove(dir) |
85 | 85 | ||
diff --git a/meta/recipes-devtools/gcc/gcc-package-cross.inc b/meta/recipes-devtools/gcc/gcc-package-cross.inc index c872e00208..e32412c127 100644 --- a/meta/recipes-devtools/gcc/gcc-package-cross.inc +++ b/meta/recipes-devtools/gcc/gcc-package-cross.inc | |||
@@ -1,7 +1,7 @@ | |||
1 | INHIBIT_PACKAGE_STRIP = "1" | 1 | INHIBIT_PACKAGE_STRIP = "1" |
2 | 2 | ||
3 | # Compute how to get from libexecdir to bindir in python (easier than shell) | 3 | # Compute how to get from libexecdir to bindir in python (easier than shell) |
4 | BINRELPATH = "${@oe.path.relative(bb.data.expand("${libexecdir}/gcc/${TARGET_SYS}/${BINV}", d), bb.data.expand("${STAGING_DIR_NATIVE}${prefix_native}/bin/${MULTIMACH_TARGET_SYS}", d))}" | 4 | BINRELPATH = "${@oe.path.relative(d.expand("${libexecdir}/gcc/${TARGET_SYS}/${BINV}"), d.expand("${STAGING_DIR_NATIVE}${prefix_native}/bin/${MULTIMACH_TARGET_SYS}"))}" |
5 | 5 | ||
6 | do_install () { | 6 | do_install () { |
7 | oe_runmake 'DESTDIR=${D}' install-host | 7 | oe_runmake 'DESTDIR=${D}' install-host |