[Pkg-ocaml-maint-commits] r5473 - in /trunk/packages/ocaml-ladspa/trunk/debian: changelog rules
jcristau at users.alioth.debian.org
jcristau at users.alioth.debian.org
Mon Apr 14 12:27:25 UTC 2008
Author: jcristau
Date: Mon Apr 14 12:27:25 2008
New Revision: 5473
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/?sc=1&rev=5473
Log:
Fix FTBFS with new dpkg-dev by setting CFLAGS correctly in
debian/rules (closes: 476037).
Modified:
trunk/packages/ocaml-ladspa/trunk/debian/changelog
trunk/packages/ocaml-ladspa/trunk/debian/rules
Modified: trunk/packages/ocaml-ladspa/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml-ladspa/trunk/debian/changelog?rev=5473&op=diff
==============================================================================
--- trunk/packages/ocaml-ladspa/trunk/debian/changelog (original)
+++ trunk/packages/ocaml-ladspa/trunk/debian/changelog Mon Apr 14 12:27:25 2008
@@ -1,6 +1,11 @@
ocaml-ladspa (0.1.0-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 <zack at debian.org> Mon, 31 Dec 2007 16:50:09 +0100
Modified: trunk/packages/ocaml-ladspa/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml-ladspa/trunk/debian/rules?rev=5473&op=diff
==============================================================================
--- trunk/packages/ocaml-ladspa/trunk/debian/rules (original)
+++ trunk/packages/ocaml-ladspa/trunk/debian/rules Mon Apr 14 12:27:25 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