From 1cbbcf835e83514db34710c0b202f1b0e565624d Mon Sep 17 00:00:00 2001 From: Jeff Kelley Date: Mon, 10 Dec 2012 12:53:51 -0500 Subject: [PATCH] Add quotes around libxml header search path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes a problem you’ll encounter (see #682) if you have a space in `SDKROOT`. --- GData/1.9.1/GData.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GData/1.9.1/GData.podspec b/GData/1.9.1/GData.podspec index c6532f143d90d6..c0150fc210784a 100644 --- a/GData/1.9.1/GData.podspec +++ b/GData/1.9.1/GData.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| 'Source/XMLSupport/*.{h,m}', 'Source/*.{h,m}' gdc.compiler_flags = '-Wno-format-extra-args', '-Wno-format-invalid-specifier', '-Wno-incompatible-pointer-types' gdc.libraries = 'xml2' - gdc.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } + gdc.xcconfig = { 'HEADER_SEARCH_PATHS' => '"$(SDKROOT)/usr/include/libxml2"' } end s.subspec 'YouTube' do |gdyt| @@ -28,7 +28,7 @@ Pod::Spec.new do |s| s.subspec 'XMLNode' do |gdxml| gdxml.source_files = 'Source/XMLSupport/*.{h,m}' gdxml.libraries = 'xml2' - gdxml.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } + gdxml.xcconfig = { 'HEADER_SEARCH_PATHS' => '"$(SDKROOT)/usr/include/libxml2"' } end end