[Fakeroot-commits] [SCM] fakeroot branch, upstream, updated. debian/1.14.3-200-gb232f8a

Clint Adams schizo at debian.org
Tue Aug 23 13:05:36 UTC 2011


The following commit has been merged in the upstream branch:
commit e2e99657de5fb5aa7e084412825c6aa2ceae2c88
Author: Clint Adams <schizo at debian.org>
Date:   Mon May 9 15:50:12 2005 +0000

    don't run tests if DEB_BUILD_OPTIONS contains 'nocheck'.  closes: #308100.
    
    git-archimport-id: fakeroot at packages.debian.org--fakeroot/fakeroot--main--0.0--patch-64

diff --git a/debian/changelog b/debian/changelog
index 3480cea..3242c2a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+fakeroot (1.2.12) unstable; urgency=low
+
+  * Do not run the test suites if DEB_BUILD_OPTIONS contains
+    'nocheck'.  closes: #308100.
+
+ -- Clint Adams <schizo at debian.org>  Mon,  9 May 2005 11:47:47 -0400
+
 fakeroot (1.2.11) unstable; urgency=low
 
   * Apply patch from Michael Banck to fix the Hurd alternative
diff --git a/debian/rules b/debian/rules
index 39614de..6c265cc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -41,9 +41,11 @@ build-stamp:
 	cd objfake-tcp && $(MAKE)
 
 ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
+ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
 	cd obj-sysv && $(MAKE) check
 	cd obj-tcp && $(MAKE) check
 endif
+endif
 
 	touch build-stamp
 

-- 
fakeroot



More information about the Fakeroot-commits mailing list