Title: [226290] trunk/Source/WebKit
Revision
226290
Author
[email protected]
Date
2017-12-24 11:07:12 -0800 (Sun, 24 Dec 2017)

Log Message

REGRESSION (r224313): Fix build warning when compiling WebKit.xcassets
<https://webkit.org/b/181148>

Reviewed by Dan Bernstein.

Fixes the following build warning:

    Opensource/Source/WebKit/WebKit.xcassets: warning: Failed to read file attributes for "Opensource/Source/WebKit/WebKit.xcassets"
        Failure Reason: No such file or directory

* WebKit.xcodeproj/project.pbxproj: Fix relative path with
case-insensitive filesystem and repository name assumptions.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (226289 => 226290)


--- trunk/Source/WebKit/ChangeLog	2017-12-24 13:57:42 UTC (rev 226289)
+++ trunk/Source/WebKit/ChangeLog	2017-12-24 19:07:12 UTC (rev 226290)
@@ -1,3 +1,18 @@
+2017-12-24  David Kilzer  <[email protected]>
+
+        REGRESSION (r224313): Fix build warning when compiling WebKit.xcassets
+        <https://webkit.org/b/181148>
+
+        Reviewed by Dan Bernstein.
+
+        Fixes the following build warning:
+
+            Opensource/Source/WebKit/WebKit.xcassets: warning: Failed to read file attributes for "Opensource/Source/WebKit/WebKit.xcassets"
+                Failure Reason: No such file or directory
+
+        * WebKit.xcodeproj/project.pbxproj: Fix relative path with
+        case-insensitive filesystem and repository name assumptions.
+
 2017-12-22  Jeff Miller  <[email protected]>
 
         Allow WebsitePolicies API object to be bridged to _WKWebsitePolicies

Modified: trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj (226289 => 226290)


--- trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj	2017-12-24 13:57:42 UTC (rev 226289)
+++ trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj	2017-12-24 19:07:12 UTC (rev 226290)
@@ -3204,7 +3204,7 @@
 		3F87B9BF158940D80090FF62 /* WebColorPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebColorPicker.h; sourceTree = "<group>"; };
 		3F915C0E1F564DED00183CE9 /* WKFullScreenWindowControllerIOS.mm */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = WKFullScreenWindowControllerIOS.mm; path = ios/WKFullScreenWindowControllerIOS.mm; sourceTree = "<group>"; };
 		3F915C0F1F564DED00183CE9 /* WKFullScreenWindowControllerIOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = WKFullScreenWindowControllerIOS.h; path = ios/WKFullScreenWindowControllerIOS.h; sourceTree = "<group>"; };
-		3FB08E421F60B240005E5312 /* WebKit.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = WebKit.xcassets; path = ../../../Opensource/Source/WebKit/WebKit.xcassets; sourceTree = "<group>"; };
+		3FB08E421F60B240005E5312 /* WebKit.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = WebKit.xcassets; sourceTree = "<group>"; };
 		410482CB1DDD2FB500F006D0 /* RTCNetwork.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RTCNetwork.cpp; sourceTree = "<group>"; };
 		410482CC1DDD2FB500F006D0 /* RTCNetwork.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTCNetwork.h; sourceTree = "<group>"; };
 		4112B5471F9FD3AB00E67875 /* NetworkRTCResolver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = NetworkRTCResolver.cpp; path = NetworkProcess/webrtc/NetworkRTCResolver.cpp; sourceTree = "<group>"; };
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to