summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2009-08-25 15:08:15 +0100
committerDamien Lespiau <damien.lespiau@intel.com>2009-08-26 00:44:41 +0100
commit65bf6c90e63b67732bda8b4a1c786a605f61c611 (patch)
tree2119edad348a3e523c874f92b3d28a85b122ef85 /meta/conf
parentc2b4308119d32c07e9c7a120e06b78afd26ff58c (diff)
downloadpoky-65bf6c90e63b67732bda8b4a1c786a605f61c611.tar.gz
base.bbclass: packages pulling a mercurial tree should depend on mercurial
As we don't provide a mercurial-native package (yet) let's assume the build machine has it installed and check (sanity.bbclass) if it's the case. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/bitbake.conf4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 7f64b03aac..59aa2efea2 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -119,11 +119,15 @@ DATETIME = "${DATE}${TIME}"
119 119
120# python-native should be here but python relies on building 120# python-native should be here but python relies on building
121# its own in staging 121# its own in staging
122# mercurial-native is required to pull mercurial repositories (hg://...)
123# we don't have it yet in the recipies so let's assume it's provided by
124# the underlying OS
122ASSUME_PROVIDED = "\ 125ASSUME_PROVIDED = "\
123 bzip2-native \ 126 bzip2-native \
124 cvs-native \ 127 cvs-native \
125 grep-native \ 128 grep-native \
126 diffstat-native \ 129 diffstat-native \
130 mercurial-native \
127 patch-native \ 131 patch-native \
128 perl-native-runtime \ 132 perl-native-runtime \
129 python-native-runtime \ 133 python-native-runtime \