From 4a0845c144a0ae19c9edc9104ee945f80f3a7b4f Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Wed, 18 Jun 2003 12:30:37 +0000 Subject: Use grep instead of egrep. --- autoconf-lib-link/ChangeLog | 5 +++++ autoconf-lib-link/config.rpath | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) (limited to 'autoconf-lib-link') diff --git a/autoconf-lib-link/ChangeLog b/autoconf-lib-link/ChangeLog index ea43672..c2b9440 100644 --- a/autoconf-lib-link/ChangeLog +++ b/autoconf-lib-link/ChangeLog @@ -1,3 +1,8 @@ +2003-06-17 Paul Eggert + + * config.rpath: Use grep instead of egrep, since POSIX 1003.1-2001 no + longer requires egrep. + 2003-05-22 Bruno Haible * gettext-0.12.1 released. diff --git a/autoconf-lib-link/config.rpath b/autoconf-lib-link/config.rpath index fa24bfc..4db13e5 100755 --- a/autoconf-lib-link/config.rpath +++ b/autoconf-lib-link/config.rpath @@ -143,7 +143,7 @@ if test "$with_gnu_ld" = yes; then ld_shlibs=no ;; beos*) - if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no @@ -162,9 +162,9 @@ if test "$with_gnu_ld" = yes; then netbsd*) ;; solaris* | sysv5*) - if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then + if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no - elif $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then + elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no @@ -174,7 +174,7 @@ if test "$with_gnu_ld" = yes; then hardcode_direct=yes ;; *) - if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no -- cgit v1.1