[Pkg-ocaml-maint-commits] r5470 - in /trunk/packages/ocaml-mad/trunk/debian: changelog rules

jcristau at users.alioth.debian.org jcristau at users.alioth.debian.org
Mon Apr 14 12:03:23 UTC 2008


Author: jcristau
Date: Mon Apr 14 12:03:22 2008
New Revision: 5470

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

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

Modified: trunk/packages/ocaml-mad/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml-mad/trunk/debian/changelog?rev=5470&op=diff
==============================================================================
--- trunk/packages/ocaml-mad/trunk/debian/changelog (original)
+++ trunk/packages/ocaml-mad/trunk/debian/changelog Mon Apr 14 12:03:22 2008
@@ -1,3 +1,10 @@
+ocaml-mad (0.3.2-5) UNRELEASED; urgency=low
+
+  * Fix FTBFS with new dpkg-dev by setting CFLAGS correctly in debian/rules
+    (closes: 476038).
+
+ -- Julien Cristau <jcristau at debian.org>  Mon, 14 Apr 2008 14:01:21 +0200
+
 ocaml-mad (0.3.2-4) unstable; urgency=high
 
   * Update fixed package to sid

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