[vlc-commits] win32: build.sh: fix conditional bootstrap launch

Simon Latapie git at videolan.org
Wed May 2 10:11:55 CEST 2018


vlc | branch: master | Simon Latapie <garf at videolan.org> | Wed May  2 08:38:05 2018 +0200| [84985e5e790f211ad07954032c698f61e6124ff8] | committer: Hugo Beauzée-Luyssen

win32: build.sh: fix conditional bootstrap launch

Signed-off-by: Hugo Beauzée-Luyssen <hugo at beauzee.fr>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=84985e5e790f211ad07954032c698f61e6124ff8
---

 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