mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
c9edbe4af9
Fallback to "link" in the path if the one next to cl is not found. Signed-off-by: Martin Storsjö <martin@martin.st>
10 lines
145 B
Bash
Executable File
10 lines
145 B
Bash
Executable File
#!/bin/sh
|
|
|
|
LINK_EXE_PATH=$(dirname "$(command -v cl)")/link
|
|
if [ -x "$LINK_EXE_PATH" ]; then
|
|
"$LINK_EXE_PATH" $@
|
|
else
|
|
link $@
|
|
fi
|
|
exit $?
|