diff options
author | Andy Dougherty <doughera@lafayette.edu> | 2012-06-06 09:07:11 -0400 |
---|---|---|
committer | Andy Dougherty <doughera@lafayette.edu> | 2012-06-06 09:07:11 -0400 |
commit | 9e477c131aa954c3c7a61e08ff178c4bbded69a6 (patch) | |
tree | c046f3000b2965d855bf42c271f4652c5b8b798f /Configure | |
parent | ce2dc92abf80d6caafee908b59bd4395d671f3c9 (diff) | |
download | perl-9e477c131aa954c3c7a61e08ff178c4bbded69a6.tar.gz |
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.
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |