diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-08-07 13:18:47 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-11 08:51:27 -0700 |
commit | efb9e4a752c2f6cb637025409cc1ddadd1714ea5 (patch) | |
tree | 54aa5892dbff631eecf224a86671eec4d2821a5f /meta/recipes-devtools/gnu-config | |
parent | 2a8944b63b7249500f1b6b292ce1a87b82699f3d (diff) | |
download | openembedded-core-efb9e4a752c2f6cb637025409cc1ddadd1714ea5.tar.gz openembedded-core-efb9e4a752c2f6cb637025409cc1ddadd1714ea5.tar.bz2 openembedded-core-efb9e4a752c2f6cb637025409cc1ddadd1714ea5.zip |
gnu-config: Update git version to latest and use it
latest gnu-config code has all the patches to support
musl/uclibc upstreamed so lets use it after upgrading to latest
its GPLv3 with autoconf exception but the GPLv2 copy of recipe
is left in as well to not break non-GPLv3 builds
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools/gnu-config')
-rw-r--r-- | meta/recipes-devtools/gnu-config/gnu-config_git.bb | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/meta/recipes-devtools/gnu-config/gnu-config_git.bb b/meta/recipes-devtools/gnu-config/gnu-config_git.bb index 754a99a4b0..3d5f2b8c16 100644 --- a/meta/recipes-devtools/gnu-config/gnu-config_git.bb +++ b/meta/recipes-devtools/gnu-config/gnu-config_git.bb @@ -1,27 +1,24 @@ SUMMARY = "gnu-configize" DESCRIPTION = "Tool that installs the GNU config.guess / config.sub into a directory tree" SECTION = "devel" -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://config.guess;endline=39;md5=0e6ca0501b27177f3bc640f7225e3ead" +LICENSE = "GPL-3.0-with-autoconf-exception" +LIC_FILES_CHKSUM = "file://config.guess;beginline=7;endline=27;md5=9bac8b1743c2240ae07cce6e546ac2f2" DEPENDS_class-native = "perl-native-runtime" INHIBIT_DEFAULT_DEPS = "1" -SRCREV = "a47f842264fc19837f8a00eb1d2d254a4c527334" -PV = "1.0+git${SRCPV}" +SRCREV = "b576fa87c140b824466ef1638e945e87dc5c0343" +PV = "20150728+git${SRCPV}" SRC_URI = "git://git.sv.gnu.org/config.git \ - file://config-guess-uclibc.patch \ file://gnu-configize.in" S = "${WORKDIR}/git" CLEANBROKEN = "1" -do_compile() { - : -} +do_compile[noexec] = "1" do_install () { install -d ${D}${datadir}/gnu-config \ @@ -40,4 +37,4 @@ do_install () { PACKAGES = "${PN}" FILES_${PN} = "${bindir} ${datadir}/gnu-config" -BBCLASSEXTEND = "native" +BBCLASSEXTEND = "native nativesdk" |