diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-22 11:27:13 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-22 11:44:28 +0100 |
commit | dc807f54f858419f97e211cd62fd2d30db9a80de (patch) | |
tree | 59adc7578ccccd566b5db07ed2a8e764c30510d8 /meta/classes/autotools.bbclass | |
parent | 5c63f8a2494cd74792e1a67b114a90a0a2fdbbcc (diff) | |
download | poky-dc807f54f858419f97e211cd62fd2d30db9a80de.tar.gz |
Finally deprecate all legacy do_stage functions. This changes the existing warning
into a fatal error if any legacy do_stage functions are found.
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r-- | meta/classes/autotools.bbclass | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 20dc72a1df..649e269f3e 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass | |||
@@ -1,6 +1,3 @@ | |||
1 | # use autotools_stage_all for native packages | ||
2 | AUTOTOOLS_NATIVE_STAGE_INSTALL = "1" | ||
3 | |||
4 | def autotools_dep_prepend(d): | 1 | def autotools_dep_prepend(d): |
5 | if bb.data.getVar('INHIBIT_AUTOTOOLS_DEPS', d, 1): | 2 | if bb.data.getVar('INHIBIT_AUTOTOOLS_DEPS', d, 1): |
6 | return '' | 3 | return '' |
@@ -204,8 +201,4 @@ autotools_stage_all() { | |||
204 | rm -rf ${STAGE_TEMP} | 201 | rm -rf ${STAGE_TEMP} |
205 | } | 202 | } |
206 | 203 | ||
207 | do_stage () { | ||
208 | autotools_stage_all | ||
209 | } | ||
210 | |||
211 | EXPORT_FUNCTIONS do_configure do_install | 204 | EXPORT_FUNCTIONS do_configure do_install |