[Webkit-unassigned] [Bug 188180] watchOS engineering build is broken after r234227
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Jul 30 14:33:59 PDT 2018
https://bugs.webkit.org/show_bug.cgi?id=188180
--- Comment #1 from Wenson Hsieh <wenson_hsieh at apple.com> ---
It seems that this snippet in postprocess-headers.sh:
function rewrite_headers () {
if [[ "${PLATFORM_NAME}" == "macosx" ]]; then
[[ -n ${OSX_VERSION} ]] || OSX_VERSION=${MACOSX_DEPLOYMENT_TARGET}
[[ -n ${IOS_VERSION} ]] || IOS_VERSION="NA"
[[ -n ${OSX_VERSION_NUMBER} ]] || OSX_VERSION_NUMBER=${TARGET_MAC_OS_X_VERSION_MAJOR}
[[ -n ${IOS_VERSION_NUMBER} ]] || IOS_VERSION_NUMBER="0"
elif [[ "${PLATFORM_NAME}" =~ "iphone" ]]; then
[[ -n ${IOS_VERSION} ]] || IOS_VERSION=${IPHONEOS_DEPLOYMENT_TARGET}
[[ -n ${OSX_VERSION} ]] || OSX_VERSION="NA"
[[ -n ${OSX_VERSION_NUMBER} ]] || OSX_VERSION_NUMBER="0"
[[ -n ${IOS_VERSION_NUMBER} ]] || IOS_VERSION_NUMBER=${SDK_VERSION_MAJOR}
fi
…
}
...doesn't take watchOS into account, since PLATFORM_NAME starts with "watch" rather than "iphone".
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20180730/d865c531/attachment.html>
More information about the webkit-unassigned
mailing list