⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 185765 in webkit


Ignore:
Timestamp:
Jun 19, 2015, 1:40:11 PM (11 years ago)
Author:
andersca@apple.com
Message:

Add a JSC symlink in /System/Library/PrivateFrameworks
https://bugs.webkit.org/show_bug.cgi?id=146158
rdar://problem/21465968

Reviewed by Dan Bernstein.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r185741 r185765  
     12015-06-19  Anders Carlsson  <andersca@apple.com>
     2
     3        Add a JSC symlink in /System/Library/PrivateFrameworks
     4        https://bugs.webkit.org/show_bug.cgi?id=146158
     5        rdar://problem/21465968
     6
     7        Reviewed by Dan Bernstein.
     8
     9        * JavaScriptCore.xcodeproj/project.pbxproj:
     10
    1112015-06-19  Joseph Pecoraro  <pecoraro@apple.com>
    212
  • trunk/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj

    r185658 r185765  
    66556655                                3713F014142905240036387F /* Check For Inappropriate Objective-C Class Names */,
    66566656                                A55DEAA416703DF7003DB841 /* Check For Inappropriate Macros in External Headers */,
     6657                                1A02D9A81B34A882000D1522 /* Add Symlink in /System/Library/PrivateFrameworks */,
    66576658                        );
    66586659                        buildRules = (
     
    67686769                        shellPath = /bin/sh;
    67696770                        shellScript = "set -e\n\nif [[ $ENABLE_FTL_JIT != \"ENABLE_FTL_JIT\" ]]\nthen\n    exit 0\nfi\n\nif [[ ${CONFIGURATION:=Debug} != \"Production\" ]]\nthen\n    # Copy the llvmForJSC library into the framework.\n    ditto \"${BUILT_PRODUCTS_DIR}/libllvmForJSC.dylib\" \"${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}/Libraries/libllvmForJSC.dylib\"\nfi\n\nif [[ $PLATFORM_NAME != \"macosx\" ]]\nthen\n    exit 0\nfi\n\nif [ ! -e \"${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Libraries\" ]\nthen\n    ln -fs \"Versions/Current/Libraries\" \"${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Libraries\"\nfi";
     6771                };
     6772                1A02D9A81B34A882000D1522 /* Add Symlink in /System/Library/PrivateFrameworks */ = {
     6773                        isa = PBXShellScriptBuildPhase;
     6774                        buildActionMask = 8;
     6775                        files = (
     6776                        );
     6777                        inputPaths = (
     6778                        );
     6779                        name = "Add Symlink in /System/Library/PrivateFrameworks";
     6780                        outputPaths = (
     6781                        );
     6782                        runOnlyForDeploymentPostprocessing = 1;
     6783                        shellPath = /bin/sh;
     6784                        shellScript = "if [[ ${PLATFORM_NAME} != \"iphoneos\" ]]; then\nexit 0;\nfi\n\nif [[ ! -d \"${INSTALL_ROOT}/${SYSTEM_LIBRARY_DIR}/PrivateFrameworks\" ]]; then\nmkdir -p \"${INSTALL_ROOT}/${SYSTEM_LIBRARY_DIR}/PrivateFrameworks\"\nfi\n\nln -s -h -f ../Frameworks/JavaScriptCore.framework ${INSTALL_ROOT}/${SYSTEM_LIBRARY_DIR}/PrivateFrameworks/JavaScriptCore.framework\nfi";
    67706785                };
    67716786                3713F014142905240036387F /* Check For Inappropriate Objective-C Class Names */ = {
Note: See TracChangeset for help on using the changeset viewer.