diff options
| author | Rafael Kitover <rkitover@gmail.com> | 2020-09-03 20:58:57 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-03 13:58:57 -0700 |
| commit | 85247c398141ab4d692b8fd61dbfcb845e79d2f2 (patch) | |
| tree | d532fa377b03ab8777ae9e54e4b4f91901d1f68c | |
| parent | 13f5a3d6159069d216b82695afcd21f7f0bbb827 (diff) | |
| download | vcpkg-85247c398141ab4d692b8fd61dbfcb845e79d2f2.tar.gz vcpkg-85247c398141ab4d692b8fd61dbfcb845e79d2f2.zip | |
Fix ffmpeg build for PATH with spaces. (#13275)
Followup on 085225b7b.
Signed-off-by: Rafael Kitover <rkitover@gmail.com>
| -rw-r--r-- | ports/ffmpeg/CONTROL | 2 | ||||
| -rw-r--r-- | ports/ffmpeg/build.sh.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/ffmpeg/CONTROL b/ports/ffmpeg/CONTROL index be2999788..55f47aaf3 100644 --- a/ports/ffmpeg/CONTROL +++ b/ports/ffmpeg/CONTROL @@ -1,6 +1,6 @@ Source: ffmpeg Version: 4.2 -Port-Version: 22 +Port-Version: 23 Homepage: https://ffmpeg.org Description: a library to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation. It is also highly portable: FFmpeg compiles, runs, and passes our testing infrastructure FATE across Linux, Mac OS X, Microsoft Windows, the BSDs, Solaris, etc. under a wide variety of build environments, machine architectures, and configurations. diff --git a/ports/ffmpeg/build.sh.in b/ports/ffmpeg/build.sh.in index 80e0afa99..58040884b 100644 --- a/ports/ffmpeg/build.sh.in +++ b/ports/ffmpeg/build.sh.in @@ -2,7 +2,7 @@ set -e -export PATH=/usr/bin:$PATH +export PATH="/usr/bin:$PATH" command -v cygpath >/dev/null && have_cygpath=1 |
