Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-09-11 01:32:07 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-09-11 01:32:07 +0300
commitf8cf7ff45a5bff769af54fa50fde9b0bb6f3b572 (patch)
treef26787449cfbbac29b818e67a0a12b62c8d93a39 /common
parent9372d9fb2812567b6585cabc614618be852a5763 (diff)
Do not use deprecated grep variants.
Diffstat (limited to 'common')
-rw-r--r--common/src-from-vcxproj.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/src-from-vcxproj.mk b/common/src-from-vcxproj.mk
index 3a16b197..0564c09c 100644
--- a/common/src-from-vcxproj.mk
+++ b/common/src-from-vcxproj.mk
@@ -10,9 +10,9 @@ SRC4 := $(SRC4)
# this file, so ../win32/$(PROJECT).vcxproj refers to the Visual Studio project
# of whichever tool is including this makefile fragment.
-BASE := $(shell egrep 'ClCompile.*cpp"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
-BASE2 := $(shell egrep 'ClCompile.*c"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
-BASE4 := $(shell egrep 'None.*S"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
+BASE := $(shell grep -E 'ClCompile.*cpp"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
+BASE2 := $(shell grep -E 'ClCompile.*c"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
+BASE4 := $(shell grep -E 'None.*S"' ../win32/$(PROJECT).vcxproj | sed -e 's/.*\"\(.*\)\".*/\1/' | sed -e 's@\\@/@g')
# The tool-specific makefile may request that certain files be omitted.
SRC += $(filter-out $(FILTER),$(BASE))