[Webkit-unassigned] [Bug 135539] New: sort-Xcode-project-file does not sort PBXFileReference and PBXBuildFile sections
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Sat Aug 2 02:23:47 PDT 2014
https://bugs.webkit.org/show_bug.cgi?id=135539
Summary: sort-Xcode-project-file does not sort
PBXFileReference and PBXBuildFile sections
Product: WebKit
Version: 528+ (Nightly build)
Platform: Unspecified
OS/Version: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: Tools / Tests
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: wangxiao8611 at gmail.com
PBXFileReference sample is like below:
```
/* Begin PBXFileReference section */
F43651BC1446351A00D06B63 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
F43651C81446351A00D06B63 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
/* End PBXFileReference section */
```
PBXBuildFile sample is like below:
```
/* Begin PBXBuildFile section */
F43651BD1446351A00D06B63 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F43651BC1446351A00D06B63 /* Cocoa.framework */; };
F43651C91446351A00D06B63 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F43651C81446351A00D06B63 /* main.m */; };
/* End PBXBuildFile section */
```
These lines are the real content for `files` and `children` that are sorted in this script.
So these two sections also needs to be sorted.
The whole project is too big, I did not clone it and make the change. I just edited on Github to get a diff. So I do not have the patch file. but you could check link https://github.com/truebit/webkit/commit/7afa105d20fccdec68d8bd778b649409f17cbdc0#diff-d65acb20b3ed0e21ae223a4e0cadf7b1 to know what has been added/modified.
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list