Skip to content

Instantly share code, notes, and snippets.

@bvibber
Created November 11, 2014 04:17
Show Gist options
  • Save bvibber/ec2b02b220714f2edc90 to your computer and use it in GitHub Desktop.
Save bvibber/ec2b02b220714f2edc90 to your computer and use it in GitHub Desktop.
commit 226dc007b17b3bca315327d08131a51cc1e4a2f4
Author: Brion Vibber <brion@pobox.com>
Date: Mon Nov 10 20:13:48 2014 -0800
Fix quoting on iOS VPX_LDFLAGS for latest changes
This gets quoted later, so don't quote it first.
diff --git a/contrib/src/vpx/rules.mak b/contrib/src/vpx/rules.mak
index 97ec939..b55199d 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment