diff options
Diffstat (limited to 'msvc-lib-common')
-rwxr-xr-x | msvc-lib-common | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/msvc-lib-common b/msvc-lib-common index 5d11ba1..8b23f4f 100755 --- a/msvc-lib-common +++ b/msvc-lib-common @@ -3,7 +3,7 @@ # @@ Do we really need LIB? What's /LIBPATH for? # # Common lib.exe driver that expects the VC and LIB variables to be set for -# the specific MSVC version/configuration set. +# the specific MSVC version/configuration. trap "{ exit 1; }" ERR set -o errtrace # Trap in functions. @@ -90,6 +90,6 @@ done # export LIB -# Lib.exe always sends diagnostics to stdout. +# lib.exe always sends diagnostics to stdout. # -msvc_exec 1 "$VC\\bin\\lib.exe" "${args[@]}" +msvc_exec 1 "$VCBIN\\lib.exe" "${args[@]}" |