[Pkg-scicomp-commits] [SCM] suitesparse branch, master, updated. 6b873c851375b984e5f4dcaa07ca18792a2a4302

Rafael Laboissiere rafael at debian.org
Sat Jun 6 12:21:02 UTC 2009


The following commit has been merged in the master branch:
commit c367b4f15bb18781f3361c4c8dc04966caf8639e
Author: Rafael Laboissiere <rafael at debian.org>
Date:   Sat Jun 6 13:58:00 2009 +0200

    Prevent removal of debian/README.source in clean rule of debian/rules

diff --git a/debian/changelog b/debian/changelog
index 22a4386..0a76139 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -47,6 +47,8 @@ suitesparse (1:3.4.0-1) UNRELEASED; urgency=low
     + Bump Standards-Version to 3.8.1 (add debian/README.source explaining
       mentioning the quilt patch system, as mandated by the Policy)
 
+  * debian/rules: Prevent removal of debian/README.source in clean rule
+
   [ Thomas Viehmann ]
   * Sprinkle some linking to KLU, UMFPACK shared libraries
     to not have unresolved symbols. Remove some from CHOLMOD.
diff --git a/debian/rules b/debian/rules
index 7c85f9b..2ec73c0 100755
--- a/debian/rules
+++ b/debian/rules
@@ -75,7 +75,7 @@ cleanbuilddir/libsuitesparse-doc::
 clean::
 	-make purge
 	-find $(DEB_BUILDDIR) -name "*.a" | xargs rm
-	-find $(DEB_BUILDDIR) -name "*.so*" | xargs rm
+	-find $(DEB_BUILDDIR) -name "*.so*" -a ! -name README.source | xargs rm
 	rm -f $(SYMBOLS_FILES) $(INSTALL_FILES)
 
 get-orig-source:

-- 
suitesparse



More information about the Pkg-scicomp-commits mailing list