diff options
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r-- | meta/classes/base.bbclass | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 1f7602394e..a57bd596d6 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -74,6 +74,15 @@ FILESPATH = "${@base_set_filespath([ "${FILE_DIRNAME}/${PF}", "${FILE_DIRNAME}/$ | |||
74 | # in the context of the location its used (:=) | 74 | # in the context of the location its used (:=) |
75 | THISDIR = "${@os.path.dirname(d.getVar('FILE', True))}" | 75 | THISDIR = "${@os.path.dirname(d.getVar('FILE', True))}" |
76 | 76 | ||
77 | def extra_path_elements(d): | ||
78 | path = "" | ||
79 | elements = (d.getVar('EXTRANATIVEPATH', True) or "").split() | ||
80 | for e in elements: | ||
81 | path = path + "${STAGING_BINDIR_NATIVE}/" + e + ":" | ||
82 | return path | ||
83 | |||
84 | PATH_prepend = "${@extra_path_elements(d)}" | ||
85 | |||
77 | addtask fetch | 86 | addtask fetch |
78 | do_fetch[dirs] = "${DL_DIR}" | 87 | do_fetch[dirs] = "${DL_DIR}" |
79 | do_fetch[file-checksums] = "${@bb.fetch.get_checksum_file_list(d)}" | 88 | do_fetch[file-checksums] = "${@bb.fetch.get_checksum_file_list(d)}" |