summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2012-06-06 09:07:11 -0400
committerAndy Dougherty <doughera@lafayette.edu>2012-06-06 09:07:11 -0400
commit9e477c131aa954c3c7a61e08ff178c4bbded69a6 (patch)
treec046f3000b2965d855bf42c271f4652c5b8b798f /Configure
parentce2dc92abf80d6caafee908b59bd4395d671f3c9 (diff)
downloadperl-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-xConfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/Configure b/Configure
index fdbbf20817..a780b81ad1 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"