summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
commitc527fd1f14c27855a37f2e8ac5346ce8d940ced2 (patch)
treebb002c1fdf011c41dbd2f0927bed23ecb5f83c97 /meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
downloadpoky-daisy-140929.tar.gz
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch')
-rw-r--r--meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch b/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
new file mode 100644
index 0000000000..db079d68fd
--- /dev/null
+++ b/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
@@ -0,0 +1,29 @@
1Upstream-Status: Pending
2
3Fix runtime error occurred e.g. with docbook-to-man calls:
4
5 grep: character class syntax is [[:space:]], not [:space:]
6 grep: character class syntax is [[:space:]], not [:space:]
7 jw: There is no frontend called "/docbook/utils-0.6.14/frontends/docbook".
8
9See also:
10
11 <https://qa.mandriva.com/show_bug.cgi?id=61127>
12
13Signed-off-by: Steffen Sledz <sledz@dresearch-fe.de>
14
15diff -Nurd docbook-utils-0.6.14-orig/bin/jw.in docbook-utils-0.6.14/bin/jw.in
16--- docbook-utils-0.6.14-orig/bin/jw.in 2012-03-29 07:50:00.789564826 +0200
17+++ docbook-utils-0.6.14/bin/jw.in 2012-03-29 07:52:10.371302967 +0200
18@@ -80,9 +80,9 @@
19 SGML_CATALOGS_DIR="/etc/sgml"
20 if [ -f "$SGML_CONF" ]
21 then
22- RE='^[:space:]*SGML_BASE_DIR[:space:]*=[:space:]*'
23+ RE='^[[:space:]]*SGML_BASE_DIR[[:space:]]*=[[:space:]]*'
24 SGML_BASE_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"`
25- RE='^[:space:]*SGML_CATALOGS_DIR[:space:]*=[:space:]*'
26+ RE='^[[:space:]]*SGML_CATALOGS_DIR[[:space:]]*=[[:space:]]*'
27 SGML_CATALOGS_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"`
28 fi
29