[Pkg-ocaml-maint-commits] r5477 - in /trunk/packages/ocaml-soundtouch/trunk/debian: changelog rules

jcristau at users.alioth.debian.org jcristau at users.alioth.debian.org
Mon Apr 14 12:51:09 UTC 2008


Author: jcristau
Date: Mon Apr 14 12:51:08 2008
New Revision: 5477

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

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

Modified: trunk/packages/ocaml-soundtouch/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml-soundtouch/trunk/debian/changelog?rev=5477&op=diff
==============================================================================
--- trunk/packages/ocaml-soundtouch/trunk/debian/changelog (original)
+++ trunk/packages/ocaml-soundtouch/trunk/debian/changelog Mon Apr 14 12:51:08 2008
@@ -1,6 +1,11 @@
 ocaml-soundtouch (0.1.1-4) 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: 476068).
 
  -- Stefano Zacchiroli <zack at debian.org>  Mon, 31 Dec 2007 16:50:12 +0100
 

Modified: trunk/packages/ocaml-soundtouch/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml-soundtouch/trunk/debian/rules?rev=5477&op=diff
==============================================================================
--- trunk/packages/ocaml-soundtouch/trunk/debian/rules (original)
+++ trunk/packages/ocaml-soundtouch/trunk/debian/rules Mon Apr 14 12:51:08 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
 




More information about the Pkg-ocaml-maint-commits mailing list