summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2015-12-04 19:44:23 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-30 12:03:14 +0000
commit217d56ec31c15741082e2c52400850b8936f69d2 (patch)
treee0497746043fb9a58b3f4b8abffd6333a9c975a3
parent6fd01ed845ef1bbf9b4044fa6783923fffa716e4 (diff)
downloadpoky-217d56ec31c15741082e2c52400850b8936f69d2.tar.gz
texinfo: don't create dependency on INHERIT variable
* we don't want the do_package signature depending on INHERIT variable * e.g. just adding the own-mirrors causes texinfo to rebuild: # bitbake-diffsigs BUILD/sstate-diff/*/*/texinfo/*do_package.sig* basehash changed from 015df2fd8e396cc1e15622dbac843301 to 9f1d06c4f238c70a99ccb6d8da348b6a Variable INHERIT value changed from ' rm_work blacklist blacklist report-error ${PACKAGE_CLASSES} ${USER_CLASSES} ${INHERIT_DISTRO} ${INHERIT_BLACKLIST} sanity' to ' rm_work own-mirrors blacklist blacklist report-error ${PACKAGE_CLASSES} ${USER_CLASSES} ${INHERIT_DISTRO} ${INHERIT_BLACKLIST} sanity' (From OE-Core rev: 2f61930f55390bd2dfeb52a1ccfbc1cbe560c3ad) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/texinfo/texinfo_5.2.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/texinfo/texinfo_5.2.bb b/meta/recipes-extended/texinfo/texinfo_5.2.bb
index cf9dcfd5de..3394474e0f 100644
--- a/meta/recipes-extended/texinfo/texinfo_5.2.bb
+++ b/meta/recipes-extended/texinfo/texinfo_5.2.bb
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
10PROVIDES_append_class-native = " texinfo-replacement-native" 10PROVIDES_append_class-native = " texinfo-replacement-native"
11 11
12def compress_pkg(d): 12def compress_pkg(d):
13 if "compress_doc" in (d.getVar("INHERIT", True) or "").split(): 13 if bb.data.inherits_class('compress_doc', d):
14 compress = d.getVar("DOC_COMPRESS", True) 14 compress = d.getVar("DOC_COMPRESS", True)
15 if compress == "gz": 15 if compress == "gz":
16 return "gzip" 16 return "gzip"