[Bug 1208947] New: kernel-source: convert egrep to grep -E
egrep and fgrep commands, deprecated since 2007, now warn that
http://bugzilla.opensuse.org/show_bug.cgi?id=1208947 Bug ID: 1208947 Summary: kernel-source: convert egrep to grep -E Classification: openSUSE Product: openSUSE Tumbleweed Version: Current Hardware: Other OS: Other Status: NEW Severity: Enhancement Priority: P5 - None Component: Kernel Assignee: kernel-bugs@opensuse.org Reporter: Andreas.Stieger@gmx.de QA Contact: qa-bugs@suse.de Blocks: 1203092 Found By: --- Blocker: --- +++ This bug was initially created as a clone of Bug #1203092 +++ GNU grep from 3.8 emitting warnings when invoking egrep/fgrep https://build.opensuse.org/request/show/1001097 they are obsolescent and should be replaced by grep -E / -F -- You are receiving this mail because: You are the assignee for the bug.
http://bugzilla.opensuse.org/show_bug.cgi?id=1208947 http://bugzilla.opensuse.org/show_bug.cgi?id=1208947#c1 --- Comment #1 from Andreas Stieger <Andreas.Stieger@gmx.de> --- Please merge https://github.com/openSUSE/kernel-source/pull/13 diff --git a/scripts/sequence-patch.sh b/scripts/sequence-patch.sh index 15f94093fc28..bdfac196f42e 100755 --- a/scripts/sequence-patch.sh +++ b/scripts/sequence-patch.sh @@ -503,7 +503,7 @@ if ! [ -d $ORIG_DIR ]; then fi if $VANILLA; then - PATCHES=( $(scripts/guards $SYMBOLS < series.conf | egrep '^patches\.(kernel\.org|rpmify)/') ) + PATCHES=( $(scripts/guards $SYMBOLS < series.conf | grep -E '^patches\.(kernel\.org|rpmify)/') ) else PATCHES=( $(scripts/guards $SYMBOLS < series.conf) ) fi -- You are receiving this mail because: You are the assignee for the bug.
participants (1)
-
bugzilla_noreply@suse.com