[vlc-commits] macosx/configure.sh: Fix argument passing to configure

Marvin Scholz git at videolan.org
Thu Nov 14 13:31:44 CET 2019


vlc/vlc-3.0 | branch: master | Marvin Scholz <epirat07 at gmail.com> | Tue Sep 11 18:12:17 2018 +0200| [71b43cb5844f20e62e693a6f86638b0e42ae8936] | committer: Marvin Scholz

macosx/configure.sh: Fix argument passing to configure

Previously an argument could incorrectly get split up even though it
was passed as one argument to the configure.sh wrapper script.

(cherry picked from commit 2f45f0bf6dfadddb497bc6c83d065adce9c26f84)
Signed-off-by: Marvin Scholz <epirat07 at gmail.com>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=71b43cb5844f20e62e693a6f86638b0e42ae8936
---

 extras/package/macosx/configure.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extras/package/macosx/configure.sh b/extras/package/macosx/configure.sh
index 2ba0c75769..93ec3c5068 100755
--- a/extras/package/macosx/configure.sh
+++ b/extras/package/macosx/configure.sh
@@ -41,4 +41,4 @@ OPTIONS="
 export CFLAGS
 export LDFLAGS
 
-sh "$(dirname $0)"/../../../configure ${OPTIONS} $*
+sh "$(dirname $0)"/../../../configure ${OPTIONS} "$@"



More information about the vlc-commits mailing list