summaryrefslogtreecommitdiff
path: root/libs.mk
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2023-01-10 13:49:15 -0800
committerJames Zern <jzern@google.com>2023-01-10 13:49:15 -0800
commite067469e77bec79f7f52d074c440f01bfa4c14af (patch)
treed689be3e62f92b80f5f7cd17a37f1cdc1f83871c /libs.mk
parent708c4aa8540ec81aa5f0d93edc2e1e4d6d4581ac (diff)
downloadlibvpx-e067469e77bec79f7f52d074c440f01bfa4c14af.tar
libvpx-e067469e77bec79f7f52d074c440f01bfa4c14af.tar.gz
libvpx-e067469e77bec79f7f52d074c440f01bfa4c14af.tar.bz2
libvpx-e067469e77bec79f7f52d074c440f01bfa4c14af.zip
build: replace egrep with grep -E
avoids a warning on some platforms: egrep: warning: egrep is obsolescent; using grep -E Bug: webm:1786 Change-Id: Ia434297731303aacb0b02cf3dcbfd8e03936485d Fixed: webm:1786
Diffstat (limited to 'libs.mk')
-rw-r--r--libs.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs.mk b/libs.mk
index f65e99242..fb6fbbeb2 100644
--- a/libs.mk
+++ b/libs.mk
@@ -446,13 +446,13 @@ ifeq ($(VPX_ARCH_X86)$(VPX_ARCH_X86_64),yes)
# YASM
$(BUILD_PFX)vpx_config.asm: $(BUILD_PFX)vpx_config.h
@echo " [CREATE] $@"
- @LC_ALL=C egrep "#define [A-Z0-9_]+ [01]" $< \
+ @LC_ALL=C grep -E "#define [A-Z0-9_]+ [01]" $< \
| awk '{print $$2 " equ " $$3}' > $@
else
ADS2GAS=$(if $(filter yes,$(CONFIG_GCC)),| $(ASM_CONVERSION))
$(BUILD_PFX)vpx_config.asm: $(BUILD_PFX)vpx_config.h
@echo " [CREATE] $@"
- @LC_ALL=C egrep "#define [A-Z0-9_]+ [01]" $< \
+ @LC_ALL=C grep -E "#define [A-Z0-9_]+ [01]" $< \
| awk '{print $$2 " EQU " $$3}' $(ADS2GAS) > $@
@echo " END" $(ADS2GAS) >> $@
CLEAN-OBJS += $(BUILD_PFX)vpx_config.asm