Comment 1 for bug 28346

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

Message-ID: <email address hidden>
Date: Tue, 10 Jan 2006 16:42:02 +0100
From: Daniel Schepler <email address hidden>
To: Debian Bug Tracking System <email address hidden>
Subject: libogg: FTBFS with new make

--=-=-=

Package: libogg
Severity: serious
Version: 1.1.2-1
Tags: patch

From my pbuilder build log:

...
# if Makefile exists run distclean
if test -f Makefile; then \
                /usr/bin/make distclean; \
        fi
#if test -d CVS; then \
                /usr/bin/make cvs-clean ;\
        fi
/bin/sh: -c: line 2: syntax error near unexpected token `fi'
/bin/sh: -c: line 2: `fi'
make: *** [clean] Error 2

I've attached a patch which fixes the build for me.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

--=-=-=
Content-Type: text/x-patch
Content-Disposition: inline; filename=libogg.diff

diff -urN libogg-1.1.2.old/debian/rules libogg-1.1.2/debian/rules
--- libogg-1.1.2.old/debian/rules 2004-08-06 01:04:02.000000000 +0000
+++ libogg-1.1.2/debian/rules 2006-01-10 15:40:30.000000000 +0000
@@ -85,8 +85,8 @@
  fi

  #if test -d CVS; then \
- $(MAKE) cvs-clean ;\
- fi
+ # $(MAKE) cvs-clean ;\
+ #fi

  dh_clean

--=-=-=--