Hi

Dne Fri, 24 Aug 2012 14:37:01 +0200
Niels Thykier <ni...@thykier.net> napsal(a):

> Source: colorhug-client
> Version: 0.1.11-1
> Severity: serious
> 
> Hi,
> 
> Your package FTBFS on ia64 and will therefore not migrate to testing
> (despite the unblock hint).  The relevant part of the of the log
> appears to be:
> 
> """
> docbook2man colorhug-ccmx.sgml > /dev/null
> /usr/share/docbook-utils/frontends/docbook: 9: [: sgml: unexpected operator

Looking at this script, it uses == within test statement, what is not
correct and causes problems with some implementations. Reassigning this
bug to docbook-utils and attaching patch which fixes this.

-- 
        Michal Čihař | http://cihar.com | http://blog.cihar.com
--- /usr/share/docbook-utils/frontends/docbook	2012-05-09 19:31:08.000000000 +0200
+++ /tmp/docbook	2012-09-11 09:30:11.271357601 +0200
@@ -6,7 +6,7 @@
 # Give the location of the centralized catalog
 # First try the one with a version matching the version that is indicated in the document
   centralized-catalog)
-	if [ -n "$SGML_NORM" ] && [ "$SGML_XML" == "sgml" ]; then
+	if [ -n "$SGML_NORM" ] && [ "$SGML_XML" = "sgml" ]; then
 	  SGML_NORM_OPTS='-d'
 	else
 	  SGML_NORM=cat

Attachment: signature.asc
Description: PGP signature

Reply via email to