]> git.wh0rd.org Git - nano.git/commitdiff
Fix XSI:ism in config.rpath.
authorJordi Mallach <jordi@gnu.org>
Fri, 25 Jun 2004 22:26:19 +0000 (22:26 +0000)
committerJordi Mallach <jordi@gnu.org>
Fri, 25 Jun 2004 22:26:19 +0000 (22:26 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_1_2_branch/nano@1816 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
config.rpath

index 10ca6d7b95d9f0086db99a80a9f43647f831794e..992baf4a5ed96e066b065a2ded78aedb26822f7c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,9 @@ CVS code -
          #246956 (no warning when trying to open non-readable file).
        - Add an extra titlebar() call (useful when reading in a big 
          file).
+- config.rpath:
+       - Replace usage of egrep with grep -E, avoiding a XSI:ism (David
+         Weinehall)
 
 GNU nano 1.2.3 - 2004.01.17
 - General:
index 5ead7586a7c417067a718d8cfd3129adeb1407b3..5e7ba100e6a5132d26c900f1cb621b7bbb5a2777 100755 (executable)
@@ -125,7 +125,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 -E ': supported targets:.* elf' > /dev/null; then
         :
       else
         ld_shlibs=no
@@ -137,9 +137,9 @@ if test "$with_gnu_ld" = yes; then
       hardcode_libdir_flag_spec='-L$libdir'
       ;;
     solaris* | sysv5*)
-      if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then
+      if $LD -v 2>&1 | grep -E '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 -E ': supported targets:.* elf' > /dev/null; then
         :
       else
         ld_shlibs=no
@@ -149,7 +149,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 -E ': supported targets:.* elf' > /dev/null; then
         :
       else
         ld_shlibs=no