From 94bb3d34edf6b8d5c1163a35fe9517f799824eae Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 10 Nov 2014 20:13:48 -0800 Subject: [PATCH] Fix quoting on iOS VPX_LDFLAGS for latest changes MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This gets quoted later, so don't quote it first. Signed-off-by: Felix Paul Kühne --- contrib/src/vpx/rules.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/src/vpx/rules.mak b/contrib/src/vpx/rules.mak index 97ec9399e3..b55199dc99 100644 --- a/contrib/src/vpx/rules.mak +++ b/contrib/src/vpx/rules.mak @@ -91,7 +91,7 @@ VPX_CONF += --sdk-path=$(MACOSX_SDK) endif ifdef HAVE_IOS VPX_CONF += --sdk-path=$(IOS_SDK) --enable-vp8-decoder --disable-vp8-encoder --disable-vp9-encoder -VPX_LDFLAGS := "-L$(IOS_SDK)/usr/lib -arch $(ARCH) -syslibroot $(IOS_SDK) -ios_version_min 6.1" +VPX_LDFLAGS := -L$(IOS_SDK)/usr/lib -arch $(ARCH) -syslibroot $(IOS_SDK) -ios_version_min 6.1 endif ifdef HAVE_ANDROID # vpx configure.sh overrides our sysroot and it looks for it itself, and -- 2.39.2