Skip to content

Commit 2e29e57

Browse files
[PATCH] Fix to work around windows braindeath state (- WIP #79 -)
1 parent f84cbb7 commit 2e29e57

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ endif
107107
# Define environment-specific flags
108108
ifeq ($(shell uname -s), Darwin)
109109
PIP_ENV_FLAGS := --break-system-packages
110-
INCLUDE_PATH = includes/fetch-test-reporter/tools-fetch-test-reporter.make
110+
FETCH_CC_INCLUDE_PATH := includes/fetch-test-reporter/tools-fetch-test-reporter.make
111111
else ifeq ($(shell uname -s), Linux)
112-
INCLUDE_PATH = includes/fetch-test-reporter/tools-fetch-test-reporter.make
112+
FETCH_CC_INCLUDE_PATH := includes/fetch-test-reporter/tools-fetch-test-reporter.make
113113
else
114-
INCLUDE_PATH = includes\fetch-test-reporter\tools-fetch-test-reporter.make
114+
FETCH_CC_INCLUDE_PATH := includes\fetch-test-reporter\tools-fetch-test-reporter.make
115115
PIP_ENV_FLAGS :=
116116
endif
117117

@@ -153,7 +153,7 @@ ifeq "$(RMDIR)" ""
153153
endif
154154

155155
# Include the makefile
156-
include $(INCLUDE_PATH)
156+
include $(FETCH_CC_INCLUDE_PATH)
157157

158158
.PHONY: all clean test cleanup init help clean-docs must_be_root must_have_flake must_have_pytest uninstall cleanup-dev-backups
159159

@@ -260,7 +260,7 @@ test-style: cleanup
260260
$(QUIET)tests/check_spelling 2>/dev/null || true
261261
$(QUIET)$(ECHO) "$@: Done."
262262

263-
cc-test-reporter: $(FETCH_CC_TOOL)
263+
cc-test-reporter: $(FETCH_CC_INCLUDE_PATH)
264264
$(QUIET)$(FETCH_CC_TOOL) || DO_FAIL="exit 2" ;
265265
$(QUIET)$(WAIT) ;
266266
$(QUIET)$(DO_FAIL) ;

0 commit comments

Comments
 (0)