diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-02 17:32:51 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-13 12:15:22 +0000 |
commit | 3c83baeb26be3c0c463eef1790213ce7f1b72c5f (patch) | |
tree | cc095abf35dfb04c90d0aac981cf8802de6b0941 | |
parent | 7c975383279291a314e95301e8cf2a4ead17c856 (diff) | |
download | poky-3c83baeb26be3c0c463eef1790213ce7f1b72c5f.tar.gz |
native.bbclass: If do_stage isn't overridden, allow do_install to run for native packages
Also let do_install run for packages that run autotools_stage_all directly
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | meta/classes/native.bbclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass index 7064c951a3..6bd37697d0 100644 --- a/meta/classes/native.bbclass +++ b/meta/classes/native.bbclass | |||
@@ -75,19 +75,19 @@ do_stage_native () { | |||
75 | fi | 75 | fi |
76 | } | 76 | } |
77 | 77 | ||
78 | |||
79 | do_stage () { | 78 | do_stage () { |
80 | do_stage_native | 79 | do_stage_native |
81 | } | 80 | } |
82 | 81 | ||
83 | do_install () { | ||
84 | true | ||
85 | } | ||
86 | |||
87 | PKG_CONFIG_PATH .= "${EXTRA_NATIVE_PKGCONFIG_PATH}" | 82 | PKG_CONFIG_PATH .= "${EXTRA_NATIVE_PKGCONFIG_PATH}" |
88 | PKG_CONFIG_SYSROOT_DIR = "" | 83 | PKG_CONFIG_SYSROOT_DIR = "" |
89 | 84 | ||
90 | python __anonymous () { | 85 | python __anonymous () { |
86 | # If we've a legacy native do_stage, we need to neuter do_install | ||
87 | stagefunc = bb.data.getVar('do_stage', d, True) | ||
88 | if (stagefunc.strip() != "do_stage_native" and stagefunc.strip() != "autotools_stage_all") and bb.data.getVar('AUTOTOOLS_NATIVE_STAGE_INSTALL', d, 1) == "1": | ||
89 | bb.data.setVar("do_install", " :", d) | ||
90 | |||
91 | pn = bb.data.getVar("PN", d, True) | 91 | pn = bb.data.getVar("PN", d, True) |
92 | depends = bb.data.getVar("DEPENDS", d, True) | 92 | depends = bb.data.getVar("DEPENDS", d, True) |
93 | deps = bb.utils.explode_deps(depends) | 93 | deps = bb.utils.explode_deps(depends) |