* Remove CDPATH and other env vars perl taint checking doesn't like.

Closes: #381279
master
joey 2006-08-03 16:13:48 +00:00
parent 6261d60bd1
commit 14d107ee6b
2 changed files with 8 additions and 0 deletions

7
debian/changelog vendored
View 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

View File

@ -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;