configure: Add .exe suffix to toolchain calls.

Allows in-tree msvc compilation with wsl.
This commit is contained in:
Carl Eugen Hoyos
2019-04-20 00:12:34 +02:00
parent 838710bd6c
commit 48860df34d
2 changed files with 8 additions and 8 deletions

View File

@@ -4,6 +4,6 @@ LINK_EXE_PATH=$(dirname "$(command -v cl)")/link
if [ -x "$LINK_EXE_PATH" ]; then
"$LINK_EXE_PATH" $@
else
link $@
link.exe $@
fi
exit $?