summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2019-03-05 20:39:31 -0800
committerKhem Raj <raj.khem@gmail.com>2019-03-07 09:33:45 -0800
commit14bf885618c426b018a6af8ff6cd7160d3fc1747 (patch)
tree4dd6abc4386f147492de4a6f46f5586c8d555bd3
parentc7ee9faedd68a173f7ac9dee3153f3a8b080e904 (diff)
downloadmeta-openembedded-14bf885618c426b018a6af8ff6cd7160d3fc1747.tar.gz
libmxml: Upgrade to 3.0 release
License-Update: Switch to Apache-2.0 as upstream has switched https://github.com/michaelrsweet/mxml/commit/f166ad1977f2f13295689772a5d9e442f73d46f1#diff-9879d6db96fd29134fc802214163b95a Fix build on risc-v Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/libmxml/libmxml_git.bb11
1 files changed, 7 insertions, 4 deletions
diff --git a/meta-oe/recipes-support/libmxml/libmxml_git.bb b/meta-oe/recipes-support/libmxml/libmxml_git.bb
index 542fe8157..b17fc67e0 100644
--- a/meta-oe/recipes-support/libmxml/libmxml_git.bb
+++ b/meta-oe/recipes-support/libmxml/libmxml_git.bb
@@ -1,13 +1,14 @@
1DESCRIPTION = "Tiny XML Library" 1DESCRIPTION = "Tiny XML Library"
2LICENSE = "Mini-XML-License" 2LICENSE = "Apache-2.0"
3LIC_FILES_CHKSUM = "file://COPYING;md5=a6ba38606d63bb042c5d8cfee182e120" 3LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
4HOMEPAGE = "https://www.msweet.org/mxml/" 4HOMEPAGE = "https://www.msweet.org/mxml/"
5BUGTRACKER = "https://github.com/michaelrsweet/mxml/issues" 5BUGTRACKER = "https://github.com/michaelrsweet/mxml/issues"
6 6
7SRC_URI = "git://github.com/michaelrsweet/mxml.git" 7SRC_URI = "git://github.com/michaelrsweet/mxml.git"
8SRCREV = "ba3cca82e15a88a9cc6afb60f059288a99afc703" 8SRCREV = "c7755b6992a2afdd34dde47fc9be97f1237cfded"
9S = "${WORKDIR}/git" 9S = "${WORKDIR}/git"
10PV = "2.12+git${SRCPV}" 10# v3.0
11PV = "3.0"
11 12
12CONFIGUREOPTS = " --prefix=${prefix} \ 13CONFIGUREOPTS = " --prefix=${prefix} \
13 --bindir=${bindir} \ 14 --bindir=${bindir} \
@@ -28,6 +29,8 @@ CONFIGUREOPTS = " --prefix=${prefix} \
28 " 29 "
29 30
30do_configure() { 31do_configure() {
32 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}
33 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}
31 ./configure ${CONFIGUREOPTS} --enable-shared 34 ./configure ${CONFIGUREOPTS} --enable-shared
32} 35}
33 36