mirror of
https://git.busybox.net/busybox
synced 2026-01-26 16:17:50 +00:00
fix another nonportable grep usage in scripts
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
e9c8bed4d3
commit
08caf0900d
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ echo "\
|
|||
*/
|
||||
static const char bbconfig_config_bz2[] ALIGN1 = {"
|
||||
|
||||
grep '^#\? \?CONFIG_' "$config" \
|
||||
grep -e '^# CONFIG_' -e '^CONFIG_' "$config" \
|
||||
| bzip2 -1 | dd bs=2 skip=1 2>/dev/null \
|
||||
| od -v -t x1 \
|
||||
| sed -e 's/^[^ ]*//' \
|
||||
|
|
|
|||
Loading…
Reference in a new issue