[Pkg-ocaml-maint-commits] r5471 - in /trunk/packages/ocaml-shout/trunk/debian: changelog rules

jcristau at users.alioth.debian.org jcristau at users.alioth.debian.org
Mon Apr 14 12:05:34 UTC 2008


Author: jcristau
Date: Mon Apr 14 12:05:34 2008
New Revision: 5471

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

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

Modified: trunk/packages/ocaml-shout/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml-shout/trunk/debian/changelog?rev=5471&op=diff
==============================================================================
--- trunk/packages/ocaml-shout/trunk/debian/changelog (original)
+++ trunk/packages/ocaml-shout/trunk/debian/changelog Mon Apr 14 12:05:34 2008
@@ -1,3 +1,10 @@
+ocaml-shout (0.2.5-2) UNRELEASED; urgency=low
+
+  * Fix FTBFS with new dpkg-dev by setting CFLAGS correctly in debian/rules
+    (closes: 476027).
+
+ -- Julien Cristau <jcristau at debian.org>  Mon, 14 Apr 2008 14:04:46 +0200
+
 ocaml-shout (0.2.5-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/packages/ocaml-shout/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml-shout/trunk/debian/rules?rev=5471&op=diff
==============================================================================
--- trunk/packages/ocaml-shout/trunk/debian/rules (original)
+++ trunk/packages/ocaml-shout/trunk/debian/rules Mon Apr 14 12:05:34 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,8 +23,8 @@
 build-stamp: config.status
 	dh_testdir
 
-	$(MAKE) CFLAGS=$(CFLAGS)
-	if [ -x /usr/bin/ocamlopt ]; then $(MAKE) CFLAGS=$(CFLAGS) opt; fi
+	$(MAKE) CFLAGS="$(CFLAGS)"
+	if [ -x /usr/bin/ocamlopt ]; then $(MAKE) CFLAGS="$(CFLAGS)" opt; fi
 
 	touch build-stamp
 




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