diff options
Diffstat (limited to 'system/binutils/fix-deprecated-egrep-usage.patch')
-rw-r--r-- | system/binutils/fix-deprecated-egrep-usage.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/system/binutils/fix-deprecated-egrep-usage.patch b/system/binutils/fix-deprecated-egrep-usage.patch new file mode 100644 index 000000000..755068267 --- /dev/null +++ b/system/binutils/fix-deprecated-egrep-usage.patch @@ -0,0 +1,33 @@ +diff -ur a/config.rpath b/config.rpath +--- a/config.rpath 2023-04-06 08:16:36.067385369 -0500 ++++ b/config.rpath 2023-04-06 08:17:09.704066414 -0500 +@@ -143,7 +143,7 @@ + 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 +@@ -162,9 +162,9 @@ + netbsd*) + ;; + 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 +@@ -174,7 +174,7 @@ + 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 |