diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2019-04-20 00:12:34 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2019-04-20 00:12:34 +0200 |
commit | 48860df34df63bbe29f1bda2865024ec4889ae7c (patch) | |
tree | 6f1632adaba5f318c6c683e6ee65528bad47fea5 /compat | |
parent | 838710bd6c5f65d436408c0737b49628f23f9ca9 (diff) | |
download | ffmpeg-streaming-48860df34df63bbe29f1bda2865024ec4889ae7c.zip ffmpeg-streaming-48860df34df63bbe29f1bda2865024ec4889ae7c.tar.gz |
configure: Add .exe suffix to toolchain calls.
Allows in-tree msvc compilation with wsl.
Diffstat (limited to 'compat')
-rwxr-xr-x | compat/windows/mslink | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/windows/mslink b/compat/windows/mslink index 07b2b3e..6cab090 100755 --- a/compat/windows/mslink +++ b/compat/windows/mslink @@ -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 $? |