[vlc-commits] win32 build.sh: avoid bash-specific syntax

Jean-Baptiste Kempf git at videolan.org
Mon Nov 13 18:58:05 CET 2017


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Nov 13 18:57:13 2017 +0100| [5b22c02fa36e2e95e76b9799849c3808bb24c88e] | committer: Jean-Baptiste Kempf

win32 build.sh: avoid bash-specific syntax

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

 extras/package/win32/build.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/extras/package/win32/build.sh b/extras/package/win32/build.sh
index 272be1fc50..50727792d5 100755
--- a/extras/package/win32/build.sh
+++ b/extras/package/win32/build.sh
@@ -98,7 +98,7 @@ if [ "$PREBUILT" != "yes" ]; then
 make list
 make -j$JOBS fetch
 make -j$JOBS
-if [ "$PACKAGE" == "yes" ]; then
+if [ "$PACKAGE" = "yes" ]; then
 make package
 fi
 else
@@ -130,8 +130,8 @@ fi
 info "Compiling"
 make -j$JOBS
 
-if [ "$INSTALLER" == "n" ]; then
+if [ "$INSTALLER" = "n" ]; then
 make package-win32-debug package-win32
-elif [ "$INSTALLER" == "r" ]; then
+elif [ "$INSTALLER" = "r" ]; then
 make package-win32
 fi



More information about the vlc-commits mailing list