diff options
| author | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-09 14:45:57 +0000 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-13 12:15:28 +0000 |
| commit | c6f860596cb461a1c144775b5a69e6d50974b531 (patch) | |
| tree | 16e41e5049c7150773012181f7a309ed6c9993a1 /meta/classes/autotools.bbclass | |
| parent | aa08ac8f6883d47dcd6d3a490dd923b042c989bd (diff) | |
| download | poky-c6f860596cb461a1c144775b5a69e6d50974b531.tar.gz | |
base/autotools.bbclass: Make sure extra dependencies are not lost for native and nativesdk BBCLASSEXTEND. Ugly but no simpler/neater way seems possible
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes/autotools.bbclass')
| -rw-r--r-- | meta/classes/autotools.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 57a8b0ed18..1fb65715b3 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass | |||
| @@ -22,7 +22,11 @@ def autotools_dep_prepend(d): | |||
| 22 | return deps + 'gnu-config-native ' | 22 | return deps + 'gnu-config-native ' |
| 23 | 23 | ||
| 24 | EXTRA_OEMAKE = "" | 24 | EXTRA_OEMAKE = "" |
| 25 | |||
| 25 | DEPENDS_prepend = "${@autotools_dep_prepend(d)}" | 26 | DEPENDS_prepend = "${@autotools_dep_prepend(d)}" |
| 27 | DEPENDS_virtclass-native_prepend = "${@autotools_dep_prepend(d)}" | ||
| 28 | DEPENDS_virtclass-nativesdk_prepend = "${@autotools_dep_prepend(d)}" | ||
| 29 | |||
| 26 | acpaths = "default" | 30 | acpaths = "default" |
| 27 | EXTRA_AUTORECONF = "--exclude=autopoint" | 31 | EXTRA_AUTORECONF = "--exclude=autopoint" |
| 28 | 32 | ||
