Building a small filesystem with busybox gives the following error lines: sed: -e expression #1, char 41: unterminated address regex sed: -e expression #1, char 42: unterminated address regex This is caused by the script update-alternatives. "[" can not be used directly in sed expression.
Signed-off-by: Jian Liu <[email protected]> --- ...andle-leftbracket-for-update-alternatives.patch | 25 ++++++++++++++++++++++ meta/recipes-devtools/opkg-utils/opkg-utils_git.bb | 4 +++- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 meta/recipes-devtools/opkg-utils/opkg-utils/handle-leftbracket-for-update-alternatives.patch diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils/handle-leftbracket-for-update-alternatives.patch b/meta/recipes-devtools/opkg-utils/opkg-utils/handle-leftbracket-for-update-alternatives.patch new file mode 100644 index 0000000..0cdc4e2 --- /dev/null +++ b/meta/recipes-devtools/opkg-utils/opkg-utils/handle-leftbracket-for-update-alternatives.patch @@ -0,0 +1,25 @@ +"[" should be escaped in sed expression. This patch is suitable for opkg-0.2.2 + +diff -Nur utils.orig/update-alternatives utils/update-alternatives +--- utils.orig/update-alternatives 2013-08-16 04:22:29.000000000 +0800 ++++ utils/update-alternatives 2014-09-19 10:55:22.238159317 +0800 +@@ -68,6 +68,10 @@ + sed -e 's/\//\\\//g' + } + ++protect_special_character() { ++ sed -e 's/\[/\\\[/g' ++} ++ + remove_alt() { + [ $# -lt 2 ] && return 1 + local name="$1" +@@ -75,7 +79,7 @@ + + [ ! -f $ad/$name ] && return 0 + +- path=`echo $path | protect_slashes` ++ path=`echo $path | protect_slashes | protect_special_character` + sed -ne "/^$path\>.*/!p" $ad/$name > $ad/$name.new + mv $ad/$name.new $ad/$name + } diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb index 693c216..04412d1 100644 --- a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb +++ b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb @@ -10,7 +10,9 @@ PROVIDES += "virtual/update-alternatives" SRCREV = "eae0d8fa44e8594aa90eadf06e5f4fbeef314509" PV = "0.1.8+git${SRCPV}" -SRC_URI = "git://git.yoctoproject.org/opkg-utils" +SRC_URI = "git://git.yoctoproject.org/opkg-utils \ + file://handle-leftbracket-for-update-alternatives.patch \ +" S = "${WORKDIR}/git" -- 1.8.5.2.233.g932f7e4 -- Jian Liu Email: [email protected] Office Phone: 86-10-84778539 -- _______________________________________________ yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/yocto
