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

Marvin Scholz git at videolan.org
Wed Sep 19 12:51:43 CEST 2018


vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Tue Sep 11 18:12:17 2018 +0200| [2f45f0bf6dfadddb497bc6c83d065adce9c26f84] | 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.

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

 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 06958a135b..2da2e85908 100755
--- a/extras/package/macosx/configure.sh
+++ b/extras/package/macosx/configure.sh
@@ -40,4 +40,4 @@ OPTIONS="
 export CFLAGS
 export LDFLAGS
 
-sh "$(dirname $0)"/../../../configure ${OPTIONS} $*
+sh "$(dirname $0)"/../../../configure ${OPTIONS} "$@"



More information about the vlc-commits mailing list