buildall.bash: use grep -E instead of egrep

according to https://www.phoronix.com/news/GNU-Grep-3.8-Stop-egrep-fgrep egrep and fgrep should not be used anymore.
thats why using buildall.bash throws the following warning:
egrep: warning: egrep is obsolescent; using grep -E
This commit is contained in:
gucio321 2024-04-23 11:46:04 +02:00
parent 9f9dd2bfd8
commit 60be0651af
No known key found for this signature in database
GPG Key ID: 53698BED2818BDCD
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ GOROOT="$(cd .. && pwd)"
gettargets() {
../bin/go tool dist list | sed -e 's|/|-|' |
egrep -v '^(android|ios)' # need C toolchain even for cross-compiling
grep -E -v '^(android|ios)' # need C toolchain even for cross-compiling
echo linux-arm-arm5
}