mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-12 05:11:59 +00:00
xmlstarlet: fix S!=B failure
Extra change: use ${BP}
Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
committed by
Martin Jansa
parent
7c68663619
commit
ffe1854a7a
+37
@@ -0,0 +1,37 @@
|
|||||||
|
Upstream-Status: Submitted [sourceforge]
|
||||||
|
|
||||||
|
From 75d789d0ea9716c9a9ae72f42a2fcfa907cf4a12 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Matthieu Crapet <mcrapet@gmail.com>
|
||||||
|
Date: Mon, 30 Jun 2014 13:52:25 +0200
|
||||||
|
Subject: [PATCH] usage2c.awk: fix wrong basename regexp
|
||||||
|
|
||||||
|
Previously not matching with filename argument with absolute path.
|
||||||
|
|
||||||
|
Signed-off-by: Matthieu Crapet <mcrapet@gmail.com>
|
||||||
|
---
|
||||||
|
usage2c.awk | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/usage2c.awk b/usage2c.awk
|
||||||
|
index 94b897a..9aea212 100755
|
||||||
|
--- a/usage2c.awk
|
||||||
|
+++ b/usage2c.awk
|
||||||
|
@@ -6,13 +6,13 @@ BEGIN {
|
||||||
|
}
|
||||||
|
|
||||||
|
# text in src/foo-bar.txt results in
|
||||||
|
-# static const char foo_text[] = {
|
||||||
|
+# static const char foo_bar[] = {
|
||||||
|
# 't', 'h', 'e', ' ', 't', 'e', 'x', 't', ...
|
||||||
|
# }
|
||||||
|
length(command_name) == 0 {
|
||||||
|
command_name = FILENAME;
|
||||||
|
sub(/\.txt$/, "", command_name);
|
||||||
|
- sub(/^([^\/]+\/)*/, "", command_name);
|
||||||
|
+ sub(/^.*\//, "", command_name);
|
||||||
|
gsub(/-/, "_", command_name);
|
||||||
|
printf("static const char %s[] = {\n", command_name);
|
||||||
|
progs = 0;
|
||||||
|
--
|
||||||
|
2.0.0
|
||||||
|
|
||||||
@@ -12,8 +12,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=c04760d09e8b0fe73283d0cc9e8bea53"
|
|||||||
|
|
||||||
DEPENDS = "libxml2 libxslt"
|
DEPENDS = "libxml2 libxslt"
|
||||||
|
|
||||||
SRC_URI = "${SOURCEFORGE_MIRROR}/xmlstar/${BPN}-${PV}.tar.gz \
|
SRC_URI = "${SOURCEFORGE_MIRROR}/xmlstar/${BP}.tar.gz \
|
||||||
file://configure.ac.patch"
|
file://configure.ac.patch \
|
||||||
|
file://0001-usage2c.awk-fix-wrong-basename-regexp.patch"
|
||||||
SRC_URI[md5sum] = "0c6db295d0cf9ff0d439edb755b7e8f6"
|
SRC_URI[md5sum] = "0c6db295d0cf9ff0d439edb755b7e8f6"
|
||||||
SRC_URI[sha256sum] = "47b4ed042ea2909257f2a386001af49fceb303f84da7214779ccf99fffc6bbba"
|
SRC_URI[sha256sum] = "47b4ed042ea2909257f2a386001af49fceb303f84da7214779ccf99fffc6bbba"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user