Changeset 167709 in webkit


Ignore:
Timestamp:
Apr 23, 2014 7:39:46 AM (10 years ago)
Author:
mrowe@apple.com
Message:

[Mac] REGRESSION (r164823): Building JavaScriptCore creates files under /tmp/JavaScriptCore.dst
<https://webkit.org/b/132053>

Reviewed by Dan Bernstein.

  • JavaScriptCore.xcodeproj/project.pbxproj: Don't try to create a symlink at /usr/local/bin/jsc inside

the DSTROOT unless we're building to the deployment location. Also remove the unnecessary -x argument
from /bin/sh since that generates unnecessary output.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r167692 r167709  
     12014-04-23  Mark Rowe  <mrowe@apple.com>
     2
     3        [Mac] REGRESSION (r164823): Building JavaScriptCore creates files under /tmp/JavaScriptCore.dst
     4        <https://webkit.org/b/132053>
     5
     6        Reviewed by Dan Bernstein.
     7
     8        * JavaScriptCore.xcodeproj/project.pbxproj: Don't try to create a symlink at /usr/local/bin/jsc inside
     9        the DSTROOT unless we're building to the deployment location. Also remove the unnecessary -x argument
     10        from /bin/sh since that generates unnecessary output.
     11
    1122014-04-22  Mark Lam  <mark.lam@apple.com>
    213
  • trunk/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj

    r167600 r167709  
    66616661                                "$(DSTROOT)$(INSTALL_PATH_PREFIX)/usr/local/bin/jsc",
    66626662                        );
    6663                         runOnlyForDeploymentPostprocessing = 0;
    6664                         shellPath = "/bin/sh -x";
     6663                        runOnlyForDeploymentPostprocessing = 1;
     6664                        shellPath = /bin/sh;
    66656665                        shellScript = "if [[ \"${SKIP_INSTALL}\" == \"NO\" ]]; then\n    mkdir -p \"${DSTROOT}${INSTALL_PATH_PREFIX}/usr/local/bin\"\n    cd \"${DSTROOT}${INSTALL_PATH_PREFIX}/usr/local/bin\"\n    if [ -L jsc ]; then\n        rm -f jsc\n    fi\n    ln -s \"../../..${INSTALL_PATH_ACTUAL}/jsc\" jsc\n    exit\nfi\n";
    66666666                };
Note: See TracChangeset for help on using the changeset viewer.