[Pkg-ocaml-maint-commits] r1756 - trunk/packages/ocaml-tools/trunk/debian

Samuel Mimram smimram-guest at costa.debian.org
Wed Sep 7 16:19:24 UTC 2005


Author: smimram-guest
Date: 2005-09-07 16:19:23 +0000 (Wed, 07 Sep 2005)
New Revision: 1756

Modified:
   trunk/packages/ocaml-tools/trunk/debian/changelog
   trunk/packages/ocaml-tools/trunk/debian/rules
Log:
Check if ocamldot directory exists.

Modified: trunk/packages/ocaml-tools/trunk/debian/changelog
===================================================================
--- trunk/packages/ocaml-tools/trunk/debian/changelog	2005-09-07 16:00:57 UTC (rev 1755)
+++ trunk/packages/ocaml-tools/trunk/debian/changelog	2005-09-07 16:19:23 UTC (rev 1756)
@@ -5,12 +5,14 @@
     Siddall), closes: #316500.
   * Added Czech translation of the debconf messages (thanks Martin Sin),
     closes: #310701.
-  * Updated Standards-Version to 3.6.2.
+  * Updated Standards-Version to 3.6.2, no changes required.
+  * Checking the existence of the ocamldot directory in clean target in order
+    for svn-buildpackage not to complain.
 
   [ Julien Cristau ]
   * Use ${misc:Depends} instead of hardcoded dependency on debconf.
 
- -- Julien Cristau <julien.cristau at ens-lyon.org>  Wed, 31 Aug 2005 22:38:19 +0200
+ -- Samuel Mimram <smimram at debian.org>  Wed,  7 Sep 2005 18:15:42 +0200
 
 ocaml-tools (2005.29.04-2) unstable; urgency=low
 

Modified: trunk/packages/ocaml-tools/trunk/debian/rules
===================================================================
--- trunk/packages/ocaml-tools/trunk/debian/rules	2005-09-07 16:00:57 UTC (rev 1755)
+++ trunk/packages/ocaml-tools/trunk/debian/rules	2005-09-07 16:19:23 UTC (rev 1756)
@@ -27,9 +27,11 @@
 	dh_testdir
 	dh_testroot
 	dh_clean
-	(cd ocamldot; make clean)
+	if [ -d ocamldot ] ; then \
+		cd ocamldot ; make clean ; \
+	fi
 
-install: 
+install:
 	dh_testdir
 	dh_testroot
 	dh_clean -k




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