Comment 1 for bug 27998

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-ID: <20060104035835.20216.98002.reportbug@voimake>
Date: Wed, 04 Jan 2006 05:58:35 +0200
From: Teemu Ikonen <email address hidden>
To: Debian Bug Tracking System <email address hidden>
Subject: mozilla: build failure in extensions/p3p

--===============0553941280==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: mozilla
Version: 1.7.12-1
Severity: serious
Tags: patch
Justification: no longer builds from source

The p3p extension in mozilla fails to build due to faulty Makefile.in, at
least on my mixed etch / sid system. The attached patch fixes this, when
dropped to debian/patches (although the resulting binary segfaults
immediately, sigh).

Teemu

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (450, 'testing'), (400, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-powerpc
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

--===============0553941280==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="p3p-makefile-spaces"

--- mozilla/extensions/p3p/Makefile.in.orig 2006-01-03 07:42:43.000000000 +0200
+++ mozilla/extensions/p3p/Makefile.in 2006-01-03 07:43:04.000000000 +0200
@@ -62,23 +62,23 @@
 p3p200010.xsl: resources/content/p3p.xsl.in Makefile.in
  @$(RM) -f $@
  $(PP) -DNAMESPACE=http://www.w3.org/2000/10/18/P3Pv1 \
- -DHAS_TMPL_RETENTION\
+ -DHAS_TMPL_RETENTION \
  $< > $@

 p3p200012.xsl: resources/content/p3p.xsl.in Makefile.in
  @$(RM) -f $@
  $(PP) -DNAMESPACE=http://www.w3.org/2000/12/P3Pv1 \
- -DHAS_CALL_OURS\
+ -DHAS_CALL_OURS \
  $< > $@

 p3p200109.xsl: resources/content/p3p.xsl.in Makefile.in
  @$(RM) -f $@
  $(PP) -DNAMESPACE=http://www.w3.org/2001/09/P3Pv1 \
- -DHAS_CALL_OURS\
+ -DHAS_CALL_OURS \
  $< > $@

 p3p200201.xsl: resources/content/p3p.xsl.in Makefile.in
  @$(RM) -f $@
  $(PP) -DNAMESPACE=http://www.w3.org/2002/01/P3Pv1 \
- -DHAS_CALL_OURS -DHAS_PURPOSE_SRC\
+ -DHAS_CALL_OURS -DHAS_PURPOSE_SRC \
  $< > $@

--===============0553941280==--