Skip to content

Commit a75c7c7

Browse files
committed
Fix warning from grep when running make
Newer versions of grep were giving warnings when running make using our Makefile. "grep: warning: stray \ before /" This commit fixes the cause of the warnings.
1 parent e4aea8c commit a75c7c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ srcDir := $(shell dirname '$(subst /Volumes/Macintosh HD/,/,$(realpath $(lastwor
7878
buildDir := $(srcDir)/build/build_$(config)
7979

8080
# get outDir from CMake install file or fall back to default if the file doesn't exist
81-
outDir := $(subst /libponyrt.tests,,$(shell grep -o -s '$(srcDir)\/build\/$(config).*\/libponyrt.tests' $(buildDir)/cmake_install.cmake))
81+
outDir := $(subst /libponyrt.tests,,$(shell grep -o -s '$(srcDir)/build/$(config).*/libponyrt.tests' $(buildDir)/cmake_install.cmake))
8282
ifeq ($(outDir),)
8383
outDir := $(srcDir)/build/$(config)
8484
endif

0 commit comments

Comments
 (0)