Skip to content

Commit ccd8570

Browse files
committed
Try kludging the Windows PATH
1 parent 05dd4fb commit ccd8570

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
export SHELL := /bin/bash
33

44
$(info ${SHELL})
5-
$(info $(shell type gcc))
6-
$(info $(shell type cc))
5+
$(info ${PATH})
6+
$(info $(shell which gcc))
7+
$(info $(shell which cc))
78
CC="cc"
89

910
# Where to install.
@@ -22,6 +23,7 @@ debug : all
2223

2324
flex := flex
2425
ifeq (${OS},Windows_NT)
26+
PATH := ${PATH}:/Program Files/Git/usr/bin
2527
flex := win_flex
2628
endif
2729

0 commit comments

Comments
 (0)