From 9fe35b0d4d0cf4622f56013f9ba9a8a061912548 Mon Sep 17 00:00:00 2001 From: Gilles Khouzam Date: Tue, 20 Jun 2017 12:46:42 -0700 Subject: [PATCH] Fixing invocation of bash command to install gcc and perl for ffmpeg --- ports/ffmpeg/portfile.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ports/ffmpeg/portfile.cmake b/ports/ffmpeg/portfile.cmake index 702596b11..de17e2851 100644 --- a/ports/ffmpeg/portfile.cmake +++ b/ports/ffmpeg/portfile.cmake @@ -39,10 +39,11 @@ if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") ## Get Perl and GCC for MSYS2 vcpkg_execute_required_process( - COMMAND ${BASH} --noprofile --norc -c "PATH=/usr/bin:\$PATH;pacman -Sy --noconfirm --needed perl gcc" + COMMAND ${BASH} --noprofile --norc -c 'PATH=/usr/bin:\$PATH;pacman -Sy --noconfirm --needed perl gcc' WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR} LOGNAME msys-${TARGET_TRIPLET} ) + elseif (VCPKG_TARGET_ARCHITECTURE STREQUAL "x64") elseif (VCPKG_TARGET_ARCHITECTURE STREQUAL "x86") else()