In metaconfig.git, the branch master has been updated

<http://perl5.git.perl.org/metaconfig.git/commitdiff/ce92b45824804da828aa9a1cb53d69e1a54e2acc?hp=94676c4a46d5dfb3a5564189fce8fe66ff87cbdf>

- Log -----------------------------------------------------------------
commit ce92b45824804da828aa9a1cb53d69e1a54e2acc
Author: Andy Dougherty <[email protected]>
Date:   Wed Jun 6 08:58:29 2012 -0400

    Replace $compile_ok by $compile since it's ok for this probe to fail.
    
    On systems where KERN_PROC_PATHNAME is not available, this probe
    is expected to fail, so use $compile to throw away the error message.

M       U/perl/usekernprocpathname.U

commit 351a5dce638b1a893fddcaa289c1050accaee850
Author: Andy Dougherty <[email protected]>
Date:   Wed Jun 6 08:55:12 2012 -0400

    Replace $compile_ok by $compile since it's ok for this probe to fail.
    
    On systems where _NSGetExecutablePath is not available, this probe
    is expected to fail, so use $compile to throw away the error message.

M       U/perl/usensgetexecutablepath.U
-----------------------------------------------------------------------

Summary of changes:
 U/perl/usekernprocpathname.U    |    2 +-
 U/perl/usensgetexecutablepath.U |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/U/perl/usekernprocpathname.U b/U/perl/usekernprocpathname.U
index 2b29882..fcc1979 100644
--- a/U/perl/usekernprocpathname.U
+++ b/U/perl/usekernprocpathname.U
@@ -112,7 +112,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"
diff --git a/U/perl/usensgetexecutablepath.U b/U/perl/usensgetexecutablepath.U
index f3de31e..4eb61de 100644
--- a/U/perl/usensgetexecutablepath.U
+++ b/U/perl/usensgetexecutablepath.U
@@ -99,7 +99,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 metaconfig repository

Reply via email to