mirror of https://github.com/FFmpeg/FFmpeg.git
favor link over link.exe in case some wrapper script already exists fallback to "link" in the path if the one next to cl is not found Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>pull/140/head
parent
daf6bce71b
commit
58ed7b6328
2 changed files with 10 additions and 1 deletions
@ -0,0 +1,9 @@ |
||||
#!/bin/sh |
||||
|
||||
LINK_EXE_PATH=$(dirname "$(command -v cl)")/link |
||||
if [ -x "$LINK_EXE_PATH" ]; then |
||||
"$LINK_EXE_PATH" $@ |
||||
else |
||||
link $@ |
||||
fi |
||||
exit $? |
Loading…
Reference in new issue