[Pkg-ocaml-maint-commits] r3053 - in /trunk/packages/ocaml/trunk/debian: changelog policy/chapter-libpack.xml

zack at users.alioth.debian.org zack at users.alioth.debian.org
Tue Sep 5 19:38:47 UTC 2006


Author: zack
Date: Tue Sep  5 19:38:45 2006
New Revision: 3053

URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/?sc=1&rev=3053
Log:
fixed typo in the suggested line to fille the OFILES variable in debian/rules (the suggested line caused shell syntax errors)

Modified:
    trunk/packages/ocaml/trunk/debian/changelog
    trunk/packages/ocaml/trunk/debian/policy/chapter-libpack.xml

Modified: trunk/packages/ocaml/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml/trunk/debian/changelog?rev=3053&op=diff
==============================================================================
--- trunk/packages/ocaml/trunk/debian/changelog (original)
+++ trunk/packages/ocaml/trunk/debian/changelog Tue Sep  5 19:38:45 2006
@@ -6,6 +6,8 @@
   * Updated policy (now at version 0.7.1); changes:
     - added a best-practice section about using the XS-X-Vcs-Svn field in
       debian/control of OCaml related packages
+    - fixed typo in the suggested debian/rules line to fill the OFILES
+      variable
 
  -- Stefano Zacchiroli <zack at debian.org>  Tue,  5 Sep 2006 12:06:25 +0200
 

Modified: trunk/packages/ocaml/trunk/debian/policy/chapter-libpack.xml
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml/trunk/debian/policy/chapter-libpack.xml?rev=3053&op=diff
==============================================================================
--- trunk/packages/ocaml/trunk/debian/policy/chapter-libpack.xml (original)
+++ trunk/packages/ocaml/trunk/debian/policy/chapter-libpack.xml Tue Sep  5 19:38:45 2006
@@ -92,7 +92,7 @@
         The string <varname>@OCamlABI@</varname> is substituted at build-time by the version of OCaml. Here are the relevant parts of the <filename>debian/rules</filename> file:
         <programlisting>
 	OCAMLABI := $(shell ocamlc -version)
-	OFILES := $(filter-out debian/control,(patsubst %.in,%,$(wildcard debian/*.in)))
+	OFILES := $(filter-out debian/control,$(patsubst %.in,%,$(wildcard debian/*.in)))
 
 	ocamlinit:
 		for f in $(OFILES); do sed -e 's/@OCamlABI@/$(OCAMLABI)/g' $$f.in > $$f; done




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