1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

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.
This commit is contained in:
Marvin Scholz 2018-09-11 18:12:17 +02:00
parent bd888e285f
commit 2f45f0bf6d

View File

@ -40,4 +40,4 @@ OPTIONS="
export CFLAGS
export LDFLAGS
sh "$(dirname $0)"/../../../configure ${OPTIONS} $*
sh "$(dirname $0)"/../../../configure ${OPTIONS} "$@"