[Pkg-ocaml-maint-commits] r4652 - in /trunk/packages/omake/trunk/debian: changelog rules

mfurr at users.alioth.debian.org mfurr at users.alioth.debian.org
Mon Oct 22 14:38:51 UTC 2007


Author: mfurr
Date: Mon Oct 22 14:38:50 2007
New Revision: 4652

URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/?sc=1&rev=4652
Log:
don't strip on non-native archs

Modified:
    trunk/packages/omake/trunk/debian/changelog
    trunk/packages/omake/trunk/debian/rules

Modified: trunk/packages/omake/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/omake/trunk/debian/changelog?rev=4652&op=diff
==============================================================================
--- trunk/packages/omake/trunk/debian/changelog (original)
+++ trunk/packages/omake/trunk/debian/changelog Mon Oct 22 14:38:50 2007
@@ -1,3 +1,10 @@
+omake (0.9.8.5-3-3) unstable; urgency=low
+
+  * Do not strip the bytecode executable (since it's -custom linked)
+    Thanks to Julien Cristau for pointing this out. (Closes: 447567)
+
+ -- Mike Furr <mfurr at debian.org>  Mon, 22 Oct 2007 10:38:15 -0400
+
 omake (0.9.8.5-3-2) unstable; urgency=low
 
   * Update deps for 3.10.0 transitiion

Modified: trunk/packages/omake/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/omake/trunk/debian/rules?rev=4652&op=diff
==============================================================================
--- trunk/packages/omake/trunk/debian/rules (original)
+++ trunk/packages/omake/trunk/debian/rules Mon Oct 22 14:38:50 2007
@@ -9,6 +9,7 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
+OCAML_HAVE_OCAMLOPT := $(shell if test -x /usr/bin/ocamlopt ; then echo "yes" ; else echo "no" ; fi)
 
 PACKAGE=omake
 include /usr/share/dpatch/dpatch.make
@@ -62,7 +63,9 @@
 	dh_installexamples
 	dh_install
 #	dh_installman doc/man/*.1
+ifeq ($(OCAML_HAVE_OCAMLOPT),yes)
 	dh_strip -Xocamldep-omake
+endif
 	dh_compress -Xhtml/
 	dh_fixperms
 	dh_installdeb




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