diff options
author | Anton Vaytulevich <anton.vaytulevich@rubius.com> | 2017-06-29 18:18:29 +0700 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2017-06-29 14:15:10 +0200 |
commit | 39d936d4d6f341f65c7888ef26550d03768d82cc (patch) | |
tree | c7e638e23a98a3d5d550e871782029d9f04d3623 /main/misc | |
parent | 3967b8a53ddce341f92c16d545f524d91a7127ef (diff) |
Add short command path when building on Windows
Diffstat (limited to 'main/misc')
-rw-r--r-- | main/misc/build-native.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/misc/build-native.bat b/main/misc/build-native.bat index 636e6f7d..1214464b 100644 --- a/main/misc/build-native.bat +++ b/main/misc/build-native.bat @@ -41,9 +41,9 @@ if not exist openvpn\.git ( ) if [%1] == [] ( - ndk-build -j 8 USE_BREAKPAD=0 + ndk-build USE_SHORT_COMMANDS=1 -j 8 USE_BREAKPAD=0 ) else ( - ndk-build %* + ndk-build USE_SHORT_COMMANDS=1 %* ) if not errorlevel 0 goto error |