[Pkg-scicomp-commits] [SCM] qhull branch, master, updated. b3025cf16e006bd39965565fe569ce9dcecbbd0d

Rafael Laboissiere rafael at debian.org
Sun Jun 14 19:32:49 UTC 2009


The following commit has been merged in the master branch:
commit 70601b42f934634417e4aa6d8fddae9f0eeb5a76
Author: Rafael Laboissiere <rafael at debian.org>
Date:   Sun Jun 14 17:43:20 2009 +0200

    Avoid running twice the build/qhull-bin rule

diff --git a/debian/changelog b/debian/changelog
index 56c4c95..caf5989 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,9 @@ qhull (2009.1-1) UNRELEASED; urgency=low
   * debian/patches/manpage-macros.patch: Drop patch (applied upstream)
   * debian/source.lintian-overrides: Drop obsolete override for Lintian
     warning ancient-libtool
+  * debian/rules: Avoid running twice the build/qhull-bin rule (via a
+    build-stamp file)
+  * debian/clean: Remove build-stamp
   * debian/watch: Fix URL and regex for upstream tarball
 
  -- Rafael Laboissiere <rafael at debian.org>  Sun, 14 Jun 2009 16:46:41 +0200
diff --git a/debian/clean b/debian/clean
index caf9104..1f13988 100644
--- a/debian/clean
+++ b/debian/clean
@@ -1 +1,2 @@
 debian/*.xml debian/*.1
+build-stamp
diff --git a/debian/rules b/debian/rules
index 13cf04e..a90977c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -13,7 +13,8 @@ DEB_DH_INSTALL_SOURCEDIR = debian/tmp
 DEB_COMPRESS_EXCLUDE = .c .h .txt
 CFLAGS := $(CFLAGS) -fno-strict-aliasing
 
-build/qhull-bin::
+build/qhull-bin:: build-stamp
+build-stamp:
 	# Build man pages
 	@( cd debian ;							\
 	  for info in "qconvex:compute the convex hull"			\
@@ -30,6 +31,7 @@ build/qhull-bin::
 	  done )
 	# Run tests
 	PATH=./src/:$$PATH /bin/sh eg/q_test
+	touch build-stamp
 
 install/libqhull-doc::
 	# Install all the needed documentation files

-- 
qhull



More information about the Pkg-scicomp-commits mailing list