* Setting NOTAINT=1 had no effect when building ikiwiki itself, fix this.
authorJoey Hess <joey@kodama.kitenet.net>
Tue, 12 Feb 2008 22:17:49 +0000 (17:17 -0500)
committerJoey Hess <joey@kodama.kitenet.net>
Tue, 12 Feb 2008 22:17:49 +0000 (17:17 -0500)
Makefile.PL
debian/changelog
debian/rules

index 7608d373c8e6623ad2fcffc546f25fd11f491092..cfaa6e6cda31701b03fd8edb15cc48ff4e21fdad 100755 (executable)
@@ -23,7 +23,7 @@ PROBABLE_INST_LIB=$(shell \\
        fi \\
 )
 
-tflag=$(shell if [ "$$NOTAINT" != 0 ]; then printf -- "-T"; fi)
+tflag=$(shell if [ "$$NOTAINT" != 1 ]; then printf -- "-T"; fi)
 extramodules=$(shell if [ "$$PROFILE" = 1 ]; then printf -- "-MDevel::Profiler"; fi)
 
 ikiwiki.out: ikiwiki.in
index 2c6b03cd1b60b7fc03321731fde0a7075d5243b2..d41bf0d7e40ed7800595a24dea8bbfbe0743f2b3 100644 (file)
@@ -20,6 +20,7 @@ ikiwiki (2.40) UNRELEASED; urgency=low
     will of course be enabled by default.
   * camelcase: Convert to use new linkify and scan hooks rather than the old
     hack.
+  * Setting NOTAINT=1 had no effect when building ikiwiki itself, fix this.
 
  -- Josh Triplett <josh@freedesktop.org>  Sun, 10 Feb 2008 13:18:58 -0800
 
index ef0e7f82780519992456c6b659a86a11cec73041..bf0c65a43e6a1b93de4ce764fbd021ca02593442 100755 (executable)
@@ -5,7 +5,7 @@ build-stamp:
        dh_testdir
        perl Makefile.PL PREFIX=/usr INSTALLDIRS=vendor
        # taint checking disabled due to perl bug #411786
-       $(MAKE) NOTAINT=1
+       NOTAINT=1 $(MAKE)
        $(MAKE) test
        touch build-stamp