Title: [180962] trunk/Source/WebKit2
Revision
180962
Author
joep...@webkit.org
Date
2015-03-03 16:08:34 -0800 (Tue, 03 Mar 2015)

Log Message

Build Fix: Add fall back handling in postprocess script for missing/unknown platform name.

Rubber-stamped by David Kilzer.

* mac/postprocess-framework-headers.sh:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (180961 => 180962)


--- trunk/Source/WebKit2/ChangeLog	2015-03-03 23:36:23 UTC (rev 180961)
+++ trunk/Source/WebKit2/ChangeLog	2015-03-04 00:08:34 UTC (rev 180962)
@@ -1,3 +1,11 @@
+2015-03-03  Joseph Pecoraro  <pecor...@apple.com>
+
+        Build Fix: Add fall back handling in postprocess script for missing/unknown platform name.
+
+        Rubber-stamped by David Kilzer.
+
+        * mac/postprocess-framework-headers.sh:
+
 2015-03-03  Enrica Casucci  <enr...@apple.com>
 
         Build fix for iOS.

Modified: trunk/Source/WebKit2/mac/postprocess-framework-headers.sh (180961 => 180962)


--- trunk/Source/WebKit2/mac/postprocess-framework-headers.sh	2015-03-03 23:36:23 UTC (rev 180961)
+++ trunk/Source/WebKit2/mac/postprocess-framework-headers.sh	2015-03-04 00:08:34 UTC (rev 180962)
@@ -38,9 +38,12 @@
     if [[ "${PLATFORM_NAME}" == "macosx" ]]; then
         OSX_VERSION=${MACOSX_DEPLOYMENT_TARGET/\./_}
         IOS_VERSION="NA"
-    else
+    elif [[ "${PLATFORM_NAME}" =~ "iphone" ]]; then
         IOS_VERSION=${IPHONEOS_DEPLOYMENT_TARGET/\./_}
         OSX_VERSION="NA"
+    else
+        IOS_VERSION="9_0"
+        OSX_VERSION="NA"
     fi
 
     for HEADER_PATH in $1/*.h; do
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to