diff options
Diffstat (limited to 'meta/classes/populate_sdk_base.bbclass')
-rw-r--r-- | meta/classes/populate_sdk_base.bbclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass index 13a0b1fdee..54b9af5bb7 100644 --- a/meta/classes/populate_sdk_base.bbclass +++ b/meta/classes/populate_sdk_base.bbclass | |||
@@ -96,7 +96,9 @@ fakeroot python do_populate_sdk() { | |||
96 | 96 | ||
97 | bb.build.exec_func("tar_sdk", d) | 97 | bb.build.exec_func("tar_sdk", d) |
98 | 98 | ||
99 | bb.build.exec_func(d.getVar("SDK_PACKAGING_FUNC", True), d) | 99 | sdk_packaging_func = d.getVar("SDK_PACKAGING_FUNC", True) or "" |
100 | if sdk_packaging_func.strip(): | ||
101 | bb.build.exec_func(d.getVar("SDK_PACKAGING_FUNC", True), d) | ||
100 | } | 102 | } |
101 | 103 | ||
102 | fakeroot create_sdk_files() { | 104 | fakeroot create_sdk_files() { |