sniper          Mon Jan 27 06:33:47 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php4       configure.in 
  Log:
  MFH: use grep -E instead of egrep. the latter is not defined by POSIX anymore
  
Index: php4/configure.in
diff -u php4/configure.in:1.396.2.24 php4/configure.in:1.396.2.25
--- php4/configure.in:1.396.2.24        Thu Jan 23 01:42:51 2003
+++ php4/configure.in   Mon Jan 27 06:33:47 2003
@@ -1,4 +1,4 @@
-dnl ## $Id: configure.in,v 1.396.2.24 2003/01/23 06:42:51 sniper Exp $ -*- sh -*-
+dnl ## $Id: configure.in,v 1.396.2.25 2003/01/27 11:33:47 sniper Exp $ -*- sh -*-
 dnl ## Process this file with autoconf to produce a configure script.
 
 divert(1)
@@ -888,7 +888,7 @@
 
 dnl Build extension directory path
 
-ZEND_MODULE_API_NO=`egrep '#define ZEND_MODULE_API_NO ' 
$srcdir/Zend/zend_modules.h|sed 's/#define ZEND_MODULE_API_NO //'`
+ZEND_MODULE_API_NO=`grep -E '#define ZEND_MODULE_API_NO ' 
+$srcdir/Zend/zend_modules.h|sed 's/#define ZEND_MODULE_API_NO //'`
 
 if test -z "$EXTENSION_DIR"; then
   extbasedir=$ZEND_MODULE_API_NO



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to