[Pkg-ocaml-maint-commits] r2544 - trunk/packages/advi/trunk/debian

Julien Cristau jcristau-guest at costa.debian.org
Thu Jan 26 13:36:28 UTC 2006


Author: jcristau-guest
Date: 2006-01-26 13:36:27 +0000 (Thu, 26 Jan 2006)
New Revision: 2544

Modified:
   trunk/packages/advi/trunk/debian/changelog
   trunk/packages/advi/trunk/debian/rules
Log:
Change the use of conditionals in debian/rules to be compatible with older
make (Closes: #349776).


Modified: trunk/packages/advi/trunk/debian/changelog
===================================================================
--- trunk/packages/advi/trunk/debian/changelog	2006-01-24 22:31:13 UTC (rev 2543)
+++ trunk/packages/advi/trunk/debian/changelog	2006-01-26 13:36:27 UTC (rev 2544)
@@ -1,3 +1,10 @@
+advi (1.6.0-9) unstable; urgency=low
+
+  * Change the use of conditionals in debian/rules to be compatible with older
+    make (Closes: #349776).
+
+ -- Julien Cristau <julien.cristau at ens-lyon.org>  Thu, 26 Jan 2006 14:27:23 +0100
+
 advi (1.6.0-8) unstable; urgency=low
 
   [ Samuel Mimram ]

Modified: trunk/packages/advi/trunk/debian/rules
===================================================================
--- trunk/packages/advi/trunk/debian/rules	2006-01-24 22:31:13 UTC (rev 2543)
+++ trunk/packages/advi/trunk/debian/rules	2006-01-26 13:36:27 UTC (rev 2544)
@@ -68,7 +68,8 @@
 	@echo "Building the native code version with the native compilers"
 	$(MAKE) HAVE_OPT=".opt" bin
 	touch opt-built-stamp
-else ifeq ($(OPT),true)
+else
+ifeq ($(OPT),true)
 	@echo "Building the native code version"
 	$(MAKE) HAVE_OPT="" bin
 	touch opt-built-stamp
@@ -76,6 +77,7 @@
 	@echo "Building the bytecode version"
 	$(MAKE) byt
 endif
+endif
 	$(MAKE) doc
 	ln -s tex/advilogo.eps test/
 	#ln -s tex/bar.eps test/




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