]> sipb.mit.edu Git - ikiwiki.git/commitdiff
* Remove CDPATH and other env vars perl taint checking doesn't like.
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Thu, 3 Aug 2006 16:13:48 +0000 (16:13 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Thu, 3 Aug 2006 16:13:48 +0000 (16:13 +0000)
Closes: #381279
debian/changelog
ikiwiki

index 0bf12fbe5a33667d641545bcd1b1ef90b1f586ee..868adca8b545afdfbac5777ed8995f4399c521d4 100644 (file)
@@ -1,3 +1,10 @@
+ikiwiki (1.15) UNRELEASED; urgency=low
+
+  * Remove CDPATH and other env vars perl taint checking doesn't like.
+    Closes: #381279
+
+ -- Joey Hess <joeyh@debian.org>  Thu,  3 Aug 2006 12:12:53 -0400
+
 ikiwiki (1.14) unstable; urgency=low
 
   * Memoize pagespec translation, this speeds up a build of the ikiwiki tree
diff --git a/ikiwiki b/ikiwiki
index 58f6af4ba521b460377f94a74742d3f424862ee4..1342ec543f3e54c216e16cb615e9493c67484e8a 100755 (executable)
--- a/ikiwiki
+++ b/ikiwiki
@@ -1,5 +1,6 @@
 #!/usr/bin/perl -T
 $ENV{PATH}="/usr/local/bin:/usr/bin:/bin";
+delete @ENV{qw{IFS CDPATH ENV BASH_ENV}};
 
 package IkiWiki;
 use warnings;