mirror of
https://github.com/videolan/vlc.git
synced 2024-12-04 23:35:52 +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
|
||||
fi
|
||||
make -j$JOBS
|
||||
export PATH=$PWD/build/bin:$PATH
|
||||
export PATH="$PWD/build/bin":"$PATH"
|
||||
cd ../../
|
||||
|
||||
export USE_FFMPEG=1
|
||||
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 [ "x$SHELL" != "x" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user