Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | Upstream-Status: Pending |
| 2 | |
| 3 | Fix 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 | |
| 9 | See also: |
| 10 | |
| 11 | <https://qa.mandriva.com/show_bug.cgi?id=61127> |
| 12 | |
| 13 | Signed-off-by: Steffen Sledz <sledz@dresearch-fe.de> |
| 14 | |
| 15 | diff -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 | |