In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/e244340e4067bb332773529bbff797bd14f103de?hp=06a9195c2193421a083cbf2336a4d7194cc0dda5>

- Log -----------------------------------------------------------------
commit e244340e4067bb332773529bbff797bd14f103de
Author: Jarkko Hietaniemi <[email protected]>
Date:   Wed Dec 16 20:19:03 2015 -0500

    Configure: grep -q is not portable
    
    It does not work in SysV (solaris) or old BSD greps.
-----------------------------------------------------------------------

Summary of changes:
 Configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Configure b/Configure
index 32ed1ff..2a4ee8c 100755
--- a/Configure
+++ b/Configure
@@ -1864,7 +1864,7 @@ esac
 
 : run the defines and the undefines, if any, but leave the file out there...
 touch optdef.sh
-grep -q '\\' optdef.sh
+grep '\\' optdef.sh >/dev/null 2>&1
 if test $? = 0; then
     echo "Configure does not support \\ in -D arguments"
     exit 1

--
Perl5 Master Repository

Reply via email to