From 85247c398141ab4d692b8fd61dbfcb845e79d2f2 Mon Sep 17 00:00:00 2001 From: Rafael Kitover Date: Thu, 3 Sep 2020 20:58:57 +0000 Subject: Fix ffmpeg build for PATH with spaces. (#13275) Followup on 085225b7b. Signed-off-by: Rafael Kitover --- ports/ffmpeg/CONTROL | 2 +- 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 -- cgit v1.2.3