diff options
author | Wenzong Fan <wenzong.fan@windriver.com> | 2011-11-30 16:45:43 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-30 15:09:34 +0000 |
commit | 2074285e84267f9f929ed6424f35cc4b2a00c335 (patch) | |
tree | 1898e731c54f2c281ff8ffc8bf16477e6b313f9d /meta/recipes-devtools/automake | |
parent | 3e0a0db3559ee9b15a99a95dd3b0c343dca4b2ec (diff) | |
download | openembedded-core-2074285e84267f9f929ed6424f35cc4b2a00c335.tar.gz openembedded-core-2074285e84267f9f929ed6424f35cc4b2a00c335.tar.bz2 openembedded-core-2074285e84267f9f929ed6424f35cc4b2a00c335.zip |
automake: Extend to provide nativesdk recipe
We will provide autotools nativesdk in meta-tookchain for reconfigure
any autotools supported projects, as a part of the plan we should extend
their recipes first.
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/automake')
-rw-r--r-- | meta/recipes-devtools/automake/automake.inc | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/automake/automake_1.11.1.bb | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-devtools/automake/automake.inc b/meta/recipes-devtools/automake/automake.inc index 370a972566..25b0c0ecd6 100644 --- a/meta/recipes-devtools/automake/automake.inc +++ b/meta/recipes-devtools/automake/automake.inc @@ -4,7 +4,7 @@ Standards. Automake requires the use of Autoconf." LICENSE = "GPLv2" HOMEPAGE = "http://www.gnu.org/software/automake/" SECTION = "devel" -PR = "r4" +PR = "r5" SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.bz2 " diff --git a/meta/recipes-devtools/automake/automake_1.11.1.bb b/meta/recipes-devtools/automake/automake_1.11.1.bb index 18450a0140..ff8353fe82 100644 --- a/meta/recipes-devtools/automake/automake_1.11.1.bb +++ b/meta/recipes-devtools/automake/automake_1.11.1.bb @@ -31,6 +31,7 @@ RDEPENDS_automake-native = "autoconf-native perl-native-runtime" PATHFIXPATCH = "file://path_prog_fixes.patch" PATHFIXPATCH_virtclass-native = "" +PATHFIXPATCH_virtclass-nativesdk = "" SRC_URI += "${PATHFIXPATCH} \ file://prefer-cpio-over-pax-for-ustar-archives.patch \ @@ -44,4 +45,4 @@ do_install () { install -d ${D}${datadir} } -BBCLASSEXTEND = "native" +BBCLASSEXTEND = "native nativesdk" |