Skip to content

Commit

Permalink
Fix unbound env variable error in tool script
Browse files Browse the repository at this point in the history
Forgot that our strict options would make this fail.
  • Loading branch information
cancel committed Jan 28, 2020
1 parent e1d9215 commit 64678e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ if [[ $os = cygwin ]]; then
# user doesn't have gcc-core installed. I have no idea if that actually
# happens. So we'll just explicitly set it to gcc. This might mess up people
# who have clang installed but not gcc, I guess? Is that even possible?
case $CC in
case $cc_exe in
i686-w64-mingw32-gcc.exe|\
x86_64-w64-mingw32-gcc.exe)
cc_exe=gcc;;
Expand Down

0 comments on commit 64678e0

Please sign in to comment.