[vlc-commits] win32: build.sh: fix conditional bootstrap launch
Simon Latapie
git at videolan.org
Thu May 3 11:42:29 CEST 2018
vlc/vlc-3.0 | branch: master | Simon Latapie <garf at videolan.org> | Wed May 2 08:38:05 2018 +0200| [c81b32d9613cc45f139cef4cdeb6de424180efe9] | committer: Hugo Beauzée-Luyssen
win32: build.sh: fix conditional bootstrap launch
Signed-off-by: Hugo Beauzée-Luyssen <hugo at beauzee.fr>
(cherry picked from commit 84985e5e790f211ad07954032c698f61e6124ff8)
Signed-off-by: Hugo Beauzée-Luyssen <hugo at beauzee.fr>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=c81b32d9613cc45f139cef4cdeb6de424180efe9
---
extras/package/win32/build.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/extras/package/win32/build.sh b/extras/package/win32/build.sh
index 7470b62a59..d9909251b2 100755
--- a/extras/package/win32/build.sh
+++ b/extras/package/win32/build.sh
@@ -92,8 +92,8 @@ TRIPLET=$ARCH-w64-mingw32
info "Building extra tools"
cd extras/tools
# bootstrap only if needed in interactive mode
-if [ "$INTERACTIVE" != "yes" || ! -f ./Makefile ]; then
-./bootstrap
+if [ "$INTERACTIVE" != "yes" ] || [ ! -f ./Makefile ]; then
+ ./bootstrap
fi
make -j$JOBS
export PATH=$PWD/build/bin:$PATH
More information about the vlc-commits
mailing list