diff options
author | Kevin Tian <kevin.tian@intel.com> | 2010-07-23 15:17:06 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-24 00:01:23 +0100 |
commit | 0ff62b0462f3f64672bd4704de9a192eb1a730d1 (patch) | |
tree | 1774913dd648d1ae62a4a189ea65b541309d4365 /meta/conf | |
parent | f23b594087dba38054a3001e66390d462fa61cbb (diff) | |
download | poky-0ff62b0462f3f64672bd4704de9a192eb1a730d1.tar.gz |
expat: use gzip-native for unpack
expat 2.0.1 archive is generated with DOS format, which causes CRC
error for some version of gzip (<1.4), e.g. on Unbuntu 10.04. This
commit adds do_unpack dependency to gzip-native, and thus to use
local compiled binary to address this issue. Since 1.4 is a known
version solving this issue, also specify a default version for
gzip-native
also move most lines into expat.inc as cleanup
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/distro/include/poky-default.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/conf/distro/include/poky-default.inc b/meta/conf/distro/include/poky-default.inc index 0df5cf680a..d7d70261fb 100644 --- a/meta/conf/distro/include/poky-default.inc +++ b/meta/conf/distro/include/poky-default.inc | |||
@@ -42,6 +42,9 @@ PREFERRED_VERSION_glibc-nativesdk ?= "${GLIBCVERSION}" | |||
42 | PREFERRED_VERSION_glibc-initial ?= "${GLIBCVERSION}" | 42 | PREFERRED_VERSION_glibc-initial ?= "${GLIBCVERSION}" |
43 | PREFERRED_VERSION_glibc-initial-nativesdk ?= "${GLIBCVERSION}" | 43 | PREFERRED_VERSION_glibc-initial-nativesdk ?= "${GLIBCVERSION}" |
44 | PREFERRED_VERSION_elfutils ?= "0.148" | 44 | PREFERRED_VERSION_elfutils ?= "0.148" |
45 | # don't use version earlier than 1.4 for gzip-native, as it's necessary for | ||
46 | # some packages using an archive format incompatible with earlier gzip | ||
47 | PREFERRED_VERSION_gzip-native ?= "1.4" | ||
45 | 48 | ||
46 | require conf/distro/include/as-needed.inc | 49 | require conf/distro/include/as-needed.inc |
47 | 50 | ||