Author: jcristau
Date: Mon Apr 14 12:25:50 2008
New Revision: 5472

URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/?sc=1&rev=5472
Log:
Fix FTBFS with new dpkg-dev by setting CFLAGS correctly in
debian/rules (closes: 476037)

Modified:
    trunk/packages/ocaml-alsa/trunk/debian/changelog
    trunk/packages/ocaml-alsa/trunk/debian/rules

Modified: trunk/packages/ocaml-alsa/trunk/debian/changelog
URL: 
http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml-alsa/trunk/debian/changelog?rev=5472&op=diff
==============================================================================
--- trunk/packages/ocaml-alsa/trunk/debian/changelog (original)
+++ trunk/packages/ocaml-alsa/trunk/debian/changelog Mon Apr 14 12:25:50 2008
@@ -1,6 +1,11 @@
 ocaml-alsa (0.1.2-3) UNRELEASED; urgency=low
 
+  [ Stefano Zacchiroli ]
   * fix vcs-svn field to point just above the debian/ dir
+
+  [ Julien Cristau ]
+  * Fix FTBFS with new dpkg-dev by setting CFLAGS correctly in
+    debian/rules (closes: 476037)
 
  -- Stefano Zacchiroli <[EMAIL PROTECTED]>  Mon, 31 Dec 2007 16:50:05 +0100
 

Modified: trunk/packages/ocaml-alsa/trunk/debian/rules
URL: 
http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml-alsa/trunk/debian/rules?rev=5472&op=diff
==============================================================================
--- trunk/packages/ocaml-alsa/trunk/debian/rules (original)
+++ trunk/packages/ocaml-alsa/trunk/debian/rules Mon Apr 14 12:25:50 2008
@@ -10,7 +10,7 @@
 
 DESTDIR = $(CURDIR)/debian/tmp$(shell ocamlc -where)
 
-CFLAGS = "-O2 -g -fPIC"
+CFLAGS = -O2 -g -fPIC
 
 ocamlinit:
        for f in $(OFILES); do sed -e 's/@OCamlABI@/$(OCAMLABI)/g' $$f.in > 
$$f; done
@@ -23,7 +23,7 @@
 build-stamp: config.status
        dh_testdir
 
-       $(MAKE) CFLAGS=$(CFLAGS)
+       $(MAKE) CFLAGS="$(CFLAGS)"
 
        touch build-stamp
 


_______________________________________________
Pkg-ocaml-maint-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-ocaml-maint-commits

Reply via email to