From 14d107ee6bf9dfcec3e14f766658d88a818f5a95 Mon Sep 17 00:00:00 2001 From: joey Date: Thu, 3 Aug 2006 16:13:48 +0000 Subject: [PATCH] * Remove CDPATH and other env vars perl taint checking doesn't like. Closes: #381279 --- debian/changelog | 7 +++++++ ikiwiki | 1 + 2 files changed, 8 insertions(+) diff --git a/debian/changelog b/debian/changelog index 0bf12fbe5..868adca8b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 58f6af4ba..1342ec543 100755 --- 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; -- 2.32.0.93.g670b81a890