diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2002-10-23 10:03:11 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2002-10-23 10:03:11 +0000 |
commit | 964e92530a7dab48d732aa8805975b6dc4718ce6 (patch) | |
tree | 8b6f1f1915e39643da96f341e8a14a14bcd6c63e | |
parent | d3ef4de1c04cb6a18ae19ffa40ec4feadaf21042 (diff) | |
download | xine-lib-964e92530a7dab48d732aa8805975b6dc4718ce6.tar.gz xine-lib-964e92530a7dab48d732aa8805975b6dc4718ce6.tar.bz2 |
changed (gnu) "grep -E" -> "egrep"; this works on solaris, too
CVS patchset: 2957
CVS date: 2002/10/23 10:03:11
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 198305b05..5287e9670 100644 --- a/configure.ac +++ b/configure.ac @@ -1316,7 +1316,7 @@ final_bindir="`eval eval eval eval echo $bindir`" if test -r /etc/ld.so.conf && ! grep -x "$final_libdir" /etc/ld.so.conf >/dev/null ; then if test "$final_libdir" != "/lib" -a "$final_libdir" != "/usr/lib" ; then - if ! echo $LD_LIBRARY_PATH | grep -E "(:|^)$final_libdir(/?:|/?$)" >/dev/null ; then + if ! echo $LD_LIBRARY_PATH | egrep "(:|^)$final_libdir(/?:|/?$)" >/dev/null ; then echo echo "****************************************************************" echo "xine-lib will be installed to $final_libdir" @@ -1337,7 +1337,7 @@ if test -r /etc/ld.so.conf && ! grep -x "$final_libdir" /etc/ld.so.conf >/dev/nu fi fi -if ! echo $PATH | grep -E "(:|^)$final_bindir(/?:|/?$)" >/dev/null ; then +if ! echo $PATH | egrep "(:|^)$final_bindir(/?:|/?$)" >/dev/null ; then echo echo "****************************************************************" echo "xine-config will be installed to $final_bindir" |