mirror of
https://github.com/videolan/vlc.git
synced 2024-12-05 07:46:32 +08:00
win32: build.sh: fix building when PATH contains spaces
This commit is contained in:
parent
7f1c493551
commit
c3478127ad
@ -99,12 +99,12 @@ if [ "$INTERACTIVE" != "yes" ] || [ ! -f ./Makefile ]; then
|
|||||||
./bootstrap
|
./bootstrap
|
||||||
fi
|
fi
|
||||||
make -j$JOBS
|
make -j$JOBS
|
||||||
export PATH=$PWD/build/bin:$PATH
|
export PATH="$PWD/build/bin":"$PATH"
|
||||||
cd ../../
|
cd ../../
|
||||||
|
|
||||||
export USE_FFMPEG=1
|
export USE_FFMPEG=1
|
||||||
export PKG_CONFIG_LIBDIR=$PWD/contrib/$TRIPLET/lib/pkgconfig
|
export PKG_CONFIG_LIBDIR=$PWD/contrib/$TRIPLET/lib/pkgconfig
|
||||||
export PATH=$PWD/contrib/$TRIPLET/bin:$PATH
|
export PATH="$PWD/contrib/$TRIPLET/bin":"$PATH"
|
||||||
|
|
||||||
if [ "$INTERACTIVE" = "yes" ]; then
|
if [ "$INTERACTIVE" = "yes" ]; then
|
||||||
if [ "x$SHELL" != "x" ]; then
|
if [ "x$SHELL" != "x" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user