From d8651d0de107495ba4bf747ca0e15b58988209aa Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Thu, 20 Jun 2013 10:15:31 +0200 Subject: [PATCH] In perlhacktips, no need to give 3 ways to set an environment variable. --- pod/perlhacktips.pod | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/pod/perlhacktips.pod b/pod/perlhacktips.pod index b694304..752ba9f 100644 --- a/pod/perlhacktips.pod +++ b/pod/perlhacktips.pod @@ -979,18 +979,7 @@ factor 2. B: To minimize the number of memory leak false alarms (see L for more information), you have to set the -environment variable PERL_DESTRUCT_LEVEL to 2. - -For csh-like shells: - - setenv PERL_DESTRUCT_LEVEL 2 - -For Bourne-type shells: - - PERL_DESTRUCT_LEVEL=2 - export PERL_DESTRUCT_LEVEL - -In Unixy environments you can also use the C command: +environment variable PERL_DESTRUCT_LEVEL to 2. For example, like this: env PERL_DESTRUCT_LEVEL=2 valgrind ./perl -Ilib ... -- 1.8.3.1