Changeset 235665 in webkit


Ignore:
Timestamp:
Sep 5, 2018, 5:31:31 AM (7 years ago)
Author:
ddkilzer@apple.com
Message:

REGRESSION (r160736): Bundle folder is missing in MiniBrowser Xcode project

Found using tidy-Xcode-project-file --missing (see Bug
188754). Folder fix was made manually.

  • MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:

(Bundle): Change the path of the folder to "mac/Bundle", and set
the name back to "Bundle".
(Bundle/Info.plist): Change file reference to be relative to its
group. Accomplished using Xcode after fixing the folder path.
(Bundle/MiniBrowserBundle_Prefix.pch): Ditto.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r235664 r235665  
     12018-09-05  David Kilzer  <ddkilzer@apple.com>
     2
     3        REGRESSION (r160736): Bundle folder is missing in MiniBrowser Xcode project
     4
     5        Found using `tidy-Xcode-project-file --missing` (see Bug
     6        188754).  Folder fix was made manually.
     7
     8        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
     9        (Bundle): Change the path of the folder to "mac/Bundle", and set
     10        the name back to "Bundle".
     11        (Bundle/Info.plist): Change file reference to be relative to its
     12        group.  Accomplished using Xcode after fixing the folder path.
     13        (Bundle/MiniBrowserBundle_Prefix.pch): Ditto.
     14
    1152018-09-05  David Kilzer  <ddkilzer@apple.com>
    216
  • trunk/Tools/MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj

    r227908 r235665  
    5656                1AFFEF781860EE6800DA465E /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
    5757                1AFFEF831860EEFB00DA465E /* MiniBrowserBundle.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = MiniBrowserBundle.xcconfig; sourceTree = "<group>"; };
    58                 1AFFEF841860EF2200DA465E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = mac/Bundle/Info.plist; sourceTree = SOURCE_ROOT; };
    59                 1AFFEF851860EF2200DA465E /* MiniBrowserBundle_Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MiniBrowserBundle_Prefix.pch; path = mac/Bundle/MiniBrowserBundle_Prefix.pch; sourceTree = SOURCE_ROOT; };
     58                1AFFEF841860EF2200DA465E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
     59                1AFFEF851860EF2200DA465E /* MiniBrowserBundle_Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MiniBrowserBundle_Prefix.pch; sourceTree = "<group>"; };
    6060                1AFFEF8618611C3D00DA465E /* MiniBrowserWebProcessPlugIn.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MiniBrowserWebProcessPlugIn.m; sourceTree = SOURCE_ROOT; };
    6161                1AFFEF8718611C3D00DA465E /* MiniBrowserWebProcessPlugIn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MiniBrowserWebProcessPlugIn.h; sourceTree = SOURCE_ROOT; };
     
    156156                                1AFFEF8618611C3D00DA465E /* MiniBrowserWebProcessPlugIn.m */,
    157157                        );
    158                         path = Bundle;
     158                        name = Bundle;
     159                        path = mac/Bundle;
    159160                        sourceTree = "<group>";
    160161                };
Note: See TracChangeset for help on using the changeset viewer.