In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/dd25c352db6f2a0adb8324232f6ccfd456d603e9?hp=dee28d0dbca2d9719243e3e17392dcd12d011104>
- Log ----------------------------------------------------------------- commit dd25c352db6f2a0adb8324232f6ccfd456d603e9 Author: Andy Dougherty <[email protected]> Date: Mon Aug 4 10:38:48 2014 -0400 Fix hint typo: No leading underscore in PERL_USE_SAFE_PUTENV hints/solaris_2.sh generates a config.over script intended to add PERL_USE_SAFE_PUTENV to ccflags, if it is not already present. An extra leading underscore in the check meant that the test always failed and PERL_USE_SAFE_PUTENV always got added. ----------------------------------------------------------------------- Summary of changes: hints/solaris_2.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hints/solaris_2.sh b/hints/solaris_2.sh index a20dd39..9577dad 100644 --- a/hints/solaris_2.sh +++ b/hints/solaris_2.sh @@ -686,7 +686,7 @@ EOCBU # cat >> config.over <<'EOOVER' if test "$d_unsetenv" = "$define" -a \ - `expr "$ccflags" : '.*-D_PERL_USE_SAFE_PUTENV'` -eq 0; then + `expr "$ccflags" : '.*-DPERL_USE_SAFE_PUTENV'` -eq 0; then ccflags="$ccflags -DPERL_USE_SAFE_PUTENV" fi EOOVER -- Perl5 Master Repository
