diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2017-11-13 13:26:22 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-21 13:06:12 +0000 |
commit | a9be3c445a047bc6fadf65b0d0f874c86c593e5d (patch) | |
tree | 7292d663c523bef0bdf2009eaf5fd69abf40434c /meta/recipes-devtools/autoconf-archive | |
parent | eac8b65515d3478e4350af7d09d2c365866f8d5b (diff) | |
download | poky-a9be3c445a047bc6fadf65b0d0f874c86c593e5d.tar.gz |
autoconf-archive: inherit allarch and fix package splitting
autoconf-archive is a set of common m4 macros, it should be allarch,
just like it is on other distros.
Also fix package splitting. With current package splitting,
autoconf-archive itself contains almost nothing, the m4 macros are
contained in its dev package. However, autoconf-archive should
contain those m4 marcos itself.
(From OE-Core rev: 8cbf5523f002e8ae0d8123755d2cbc3e8b0138ac)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/autoconf-archive')
-rw-r--r-- | meta/recipes-devtools/autoconf-archive/autoconf-archive_2016.09.16.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-devtools/autoconf-archive/autoconf-archive_2016.09.16.bb b/meta/recipes-devtools/autoconf-archive/autoconf-archive_2016.09.16.bb index 104dc3896d..89d57ac079 100644 --- a/meta/recipes-devtools/autoconf-archive/autoconf-archive_2016.09.16.bb +++ b/meta/recipes-devtools/autoconf-archive/autoconf-archive_2016.09.16.bb | |||
@@ -9,6 +9,10 @@ SRC_URI = "${GNU_MIRROR}/${BPN}/${BPN}-${PV}.tar.xz" | |||
9 | SRC_URI[md5sum] = "bf19d4cddce260b3c3e1d51d42509071" | 9 | SRC_URI[md5sum] = "bf19d4cddce260b3c3e1d51d42509071" |
10 | SRC_URI[sha256sum] = "e8f2efd235f842bad2f6938bf4a72240a5e5fcd248e8444335e63beb60fabd82" | 10 | SRC_URI[sha256sum] = "e8f2efd235f842bad2f6938bf4a72240a5e5fcd248e8444335e63beb60fabd82" |
11 | 11 | ||
12 | inherit autotools | 12 | inherit autotools allarch |
13 | |||
14 | PACKAGES = "${PN} ${PN}-doc" | ||
15 | |||
16 | FILES_${PN} += "${datadir}/aclocal" | ||
13 | 17 | ||
14 | BBCLASSEXTEND = "native nativesdk" | 18 | BBCLASSEXTEND = "native nativesdk" |