@@ -11,13 +11,13 @@ RECOVER-NAME = $(subst ^^^^^^^^^^,\ ,$(strip $1))
11
11
RECOVER-NAME2 = $(subst ^^^^^^^^^^,\\\ ,$(strip $1) )
12
12
CONVERT-CPP-TO-DEPENDENCY-NAME = $(subst .cpp,.d,$(1 ) )
13
13
CONVERT-DEPENDENCY-TO-CPP-NAME = $(subst .d,.cpp,$(1 ) )
14
- FIND-CPP-TESTS = $(shell find -name ' $(COSMOS_ROOT_PATH ) /code/test_* .cpp' | sed 's: :^^^^^^^^^^:g')
14
+ FIND-CPP-TESTS = $(shell find " $(COSMOS_ROOT_PATH ) /code/" -name " test_* .cpp" | sed 's: :^^^^^^^^^^:g')
15
15
FIND-CPP-SOURCES = $(filter-out $(cpp_tests ) ,$(cpp_all_files ) )
16
- FIND-CPP-TEST-DEPENDENCIES = $(shell find -name ' $(COSMOS_ROOT_PATH ) /code/test_* .d' | sed 's: :^^^^^^^^^^:g')
16
+ FIND-CPP-TEST-DEPENDENCIES = $(shell find " $(COSMOS_ROOT_PATH ) /code/" -name " test_* .d" | sed 's: :^^^^^^^^^^:g')
17
17
FIND-CPP-SOURCE-DEPENDENCIES = $(filter-out $(cpp_test_dependencies ) ,$(cpp_all_dependencies ) )
18
18
19
19
20
- cpp_all_files = $(shell find -name ' $(COSMOS_ROOT_PATH ) /code/* .cpp' | sed 's: :^^^^^^^^^^:g')
20
+ cpp_all_files = $(shell find " $(COSMOS_ROOT_PATH ) /code/" -name " * .cpp" | sed 's: :^^^^^^^^^^:g')
21
21
cpp_tests = $(call FIND-CPP-TESTS)
22
22
cpp_sources = $(call FIND-CPP-SOURCES)
23
23
@@ -64,7 +64,7 @@ generate_dependency:
64
64
\r ## ##########################"
65
65
66
66
67
- cpp_all_dependencies = $(shell find -name ' $(COSMOS_ROOT_PATH ) /code/* .d' | sed 's: :^^^^^^^^^^:g')
67
+ cpp_all_dependencies = $(shell find " $(COSMOS_ROOT_PATH ) /code/" -name " * .d" | sed 's: :^^^^^^^^^^:g')
68
68
cpp_test_dependencies = $(call FIND-CPP-TEST-DEPENDENCIES)
69
69
cpp_source_dependencies = $(call FIND-CPP-SOURCE-DEPENDENCIES)
70
70
0 commit comments