Changeset 112496 in webkit


Ignore:
Timestamp:
Mar 28, 2012 8:00:19 PM (12 years ago)
Author:
ddkilzer@apple.com
Message:

minidom configurations should be based on ToolExecutable.xcconfig
<http://webkit.org/b/82513>

Reviewed by Mark Rowe.

Note that this patch changes minidom from being installed in
/usr/local/bin to JavaScriptCore.framework/Resources.

  • Configurations/ToolExecutable.xcconfig: Add semi-colon.
  • JavaScriptCore.xcodeproj/project.pbxproj: Base minidom

configurations on ToolExecutable.xcconfig. Remove redundant
PRODUCT_NAME and SKIP_INSTALL variables.

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r112460 r112496  
     12012-03-28  David Kilzer  <ddkilzer@apple.com>
     2
     3        minidom configurations should be based on ToolExecutable.xcconfig
     4        <http://webkit.org/b/82513>
     5
     6        Reviewed by Mark Rowe.
     7
     8        Note that this patch changes minidom from being installed in
     9        /usr/local/bin to JavaScriptCore.framework/Resources.
     10
     11        * Configurations/ToolExecutable.xcconfig: Add semi-colon.
     12        * JavaScriptCore.xcodeproj/project.pbxproj: Base minidom
     13        configurations on ToolExecutable.xcconfig.  Remove redundant
     14        PRODUCT_NAME and SKIP_INSTALL variables.
     15
    1162012-03-28  Gavin Barraclough  <barraclough@apple.com>
    217
  • trunk/Source/JavaScriptCore/Configurations/ToolExecutable.xcconfig

    r109287 r112496  
    2222// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2323
    24 INSTALL_PATH = $(JAVASCRIPTCORE_FRAMEWORKS_DIR)/JavaScriptCore.framework/Resources
     24INSTALL_PATH = $(JAVASCRIPTCORE_FRAMEWORKS_DIR)/JavaScriptCore.framework/Resources;
    2525PRODUCT_NAME = $(TARGET_NAME);
    2626
  • trunk/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj

    r112454 r112496  
    31903190                1412113A0A48798400480255 /* Debug */ = {
    31913191                        isa = XCBuildConfiguration;
    3192                         buildSettings = {
    3193                                 PRODUCT_NAME = minidom;
    3194                                 SKIP_INSTALL = YES;
     3192                        baseConfigurationReference = BC021BF2136900C300FC5467 /* ToolExecutable.xcconfig */;
     3193                        buildSettings = {
    31953194                        };
    31963195                        name = Debug;
     
    31983197                1412113B0A48798400480255 /* Release */ = {
    31993198                        isa = XCBuildConfiguration;
    3200                         buildSettings = {
    3201                                 PRODUCT_NAME = minidom;
    3202                                 SKIP_INSTALL = YES;
     3199                        baseConfigurationReference = BC021BF2136900C300FC5467 /* ToolExecutable.xcconfig */;
     3200                        buildSettings = {
    32033201                        };
    32043202                        name = Release;
     
    32063204                1412113C0A48798400480255 /* Production */ = {
    32073205                        isa = XCBuildConfiguration;
    3208                         buildSettings = {
    3209                                 PRODUCT_NAME = minidom;
    3210                                 SKIP_INSTALL = YES;
     3206                        baseConfigurationReference = BC021BF2136900C300FC5467 /* ToolExecutable.xcconfig */;
     3207                        buildSettings = {
    32113208                        };
    32123209                        name = Production;
     
    34063403                A76148410E6402F700E357FA /* Profiling */ = {
    34073404                        isa = XCBuildConfiguration;
    3408                         buildSettings = {
    3409                                 PRODUCT_NAME = minidom;
    3410                                 SKIP_INSTALL = YES;
     3405                        baseConfigurationReference = BC021BF2136900C300FC5467 /* ToolExecutable.xcconfig */;
     3406                        buildSettings = {
    34113407                        };
    34123408                        name = Profiling;
Note: See TracChangeset for help on using the changeset viewer.