mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 00:59:48 +00:00
docbook-utils-native: fix syntax problem in jw.in
Fix runtime error occurred e.g. with docbook-to-man calls: grep: character class syntax is [[:space:]], not [:space:] grep: character class syntax is [[:space:]], not [:space:] jw: There is no frontend called "/docbook/utils-0.6.14/frontends/docbook". See also: <https://qa.mandriva.com/show_bug.cgi?id=61127> (From OE-Core rev: 627998726ca3ee2ed2510c0f666747f688d06c56) Signed-off-by: Steffen Sledz <sledz@dresearch-fe.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
5cdb58f683
commit
3eb0125bde
@@ -0,0 +1,29 @@
|
||||
Upstream-Status: Pending
|
||||
|
||||
Fix runtime error occurred e.g. with docbook-to-man calls:
|
||||
|
||||
grep: character class syntax is [[:space:]], not [:space:]
|
||||
grep: character class syntax is [[:space:]], not [:space:]
|
||||
jw: There is no frontend called "/docbook/utils-0.6.14/frontends/docbook".
|
||||
|
||||
See also:
|
||||
|
||||
<https://qa.mandriva.com/show_bug.cgi?id=61127>
|
||||
|
||||
Signed-off-by: Steffen Sledz <sledz@dresearch-fe.de>
|
||||
|
||||
diff -Nurd docbook-utils-0.6.14-orig/bin/jw.in docbook-utils-0.6.14/bin/jw.in
|
||||
--- docbook-utils-0.6.14-orig/bin/jw.in 2012-03-29 07:50:00.789564826 +0200
|
||||
+++ docbook-utils-0.6.14/bin/jw.in 2012-03-29 07:52:10.371302967 +0200
|
||||
@@ -80,9 +80,9 @@
|
||||
SGML_CATALOGS_DIR="/etc/sgml"
|
||||
if [ -f "$SGML_CONF" ]
|
||||
then
|
||||
- RE='^[:space:]*SGML_BASE_DIR[:space:]*=[:space:]*'
|
||||
+ RE='^[[:space:]]*SGML_BASE_DIR[[:space:]]*=[[:space:]]*'
|
||||
SGML_BASE_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"`
|
||||
- RE='^[:space:]*SGML_CATALOGS_DIR[:space:]*=[:space:]*'
|
||||
+ RE='^[[:space:]]*SGML_CATALOGS_DIR[[:space:]]*=[[:space:]]*'
|
||||
SGML_CATALOGS_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"`
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user