Commit a9209776 authored by Boris Bügling's avatar Boris Bügling Committed by Samuel Giddins

Clear out PRIVATE/PUBLIC_HEADERS_FOLDER_PATH

This fixes an issue with archiving introduced by changing header
accessibility attributes.

Fixes #4119
parent d5261242
......@@ -36,6 +36,20 @@ module Pod
private
# Remove the default headers folder path settings for static library pod
# targets.
#
# @return [Hash{String => String}]
#
def custom_build_settings
settings = super
unless target.requires_frameworks?
settings['PRIVATE_HEADERS_FOLDER_PATH'] = ''
settings['PUBLIC_HEADERS_FOLDER_PATH'] = ''
end
settings
end
#-----------------------------------------------------------------------#
SOURCE_FILE_EXTENSIONS = Sandbox::FileAccessor::SOURCE_FILE_EXTENSIONS
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment