build: Remove usage of obsolescent egrep

* "egrep: warning: egrep is obsolescent; using grep -E"
* egrep on haiku is a shell script calling grep -E
* given the warnings in the latest egrep, lets get
  ahead of the curve and migrate to grep -E

Change-Id: I0fc2b936c7a9c52f87caf97d8e9ac42516fee014
Reviewed-on: https://review.haiku-os.org/c/haiku/+/5718
Reviewed-by: Adrien Destugues <[email protected]>
Tested-by: Commit checker robot <[email protected]>
This commit is contained in:
Alexander von Gluck IV
2022-10-06 16:28:01 +00:00
committed by waddlesplash
parent ffc2227f28
commit 46cbd8ea98
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -374,7 +374,7 @@ fi
# install default settings for packages
for packageFile in $systemPackages; do
if $package list -p $packageFile | egrep '^settings/' > /dev/null; then
if $package list -p $packageFile | grep -E '^settings/' > /dev/null; then
extractFile $packageFile system/settings settings
fi
done