In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/9e477c131aa954c3c7a61e08ff178c4bbded69a6?hp=ce2dc92abf80d6caafee908b59bd4395d671f3c9>
- Log ----------------------------------------------------------------- commit 9e477c131aa954c3c7a61e08ff178c4bbded69a6 Author: Andy Dougherty <[email protected]> Date: Wed Jun 6 09:07:11 2012 -0400 Replace $compile_ok by $compile for two probes that can fail. The probes for _NSGetExecutablePath and KERN_PROC_PATHNAME will fail on systems where they are not available. This is normal, so use $compile to throw away the error messages. ----------------------------------------------------------------------- Summary of changes: Configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Configure b/Configure index fdbbf20..a780b81 100755 --- a/Configure +++ b/Configure @@ -21535,7 +21535,7 @@ EOM val=$undef set try -if eval $compile_ok; then +if eval $compile; then if $run ./try; then echo "You can use sysctl with KERN_PROC_PATHNAME to find the executing program." >&4 val="$define" @@ -21637,7 +21637,7 @@ EOM val=$undef set try -if eval $compile_ok; then +if eval $compile; then if $run ./try; then echo "You can use _NSGetExecutablePath to find the executing program." >&4 val="$define" -- Perl5 Master Repository
