diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2002-10-28 14:03:59 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2002-10-28 14:03:59 +0000 |
commit | 94d7f444459d4f46553b5ef8fe37d58487fbdca2 (patch) | |
tree | f4a26b688267d9fa9bf9ffa9646b9f05e7564210 | |
parent | 711c71162d608a177e1d5329145a769ad9938de1 (diff) | |
download | xine-lib-94d7f444459d4f46553b5ef8fe37d58487fbdca2.tar.gz xine-lib-94d7f444459d4f46553b5ef8fe37d58487fbdca2.tar.bz2 |
AC_PROG_EGREP introduces a dependancy on autoconf 2.54, removed. Just use
egrep.
CVS patchset: 3074
CVS date: 2002/10/28 14:03:59
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index fa79b6f94..1bdfdfbfd 100644 --- a/configure.ac +++ b/configure.ac @@ -95,7 +95,7 @@ CFLAGS="$saved_CFLAGS" AC_PROG_CC AC_HEADER_STDC AC_PROG_MAKE_SET -AC_PROG_EGREP +dnl AC_PROG_EGREP needs autoconf 2.54, just hardcode for "egrep" AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_AWK @@ -1333,7 +1333,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 | $EGREP "(:|^)$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" @@ -1354,7 +1354,7 @@ if test -r /etc/ld.so.conf && ! grep -x "$final_libdir" /etc/ld.so.conf >/dev/nu fi fi -if ! echo $PATH | $EGREP "(:|^)$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" |