Changeset 44470 in webkit


Ignore:
Timestamp:
Jun 5, 2009 7:43:52 AM (15 years ago)
Author:
ddkilzer@apple.com
Message:

JavaScriptCore:

2009-06-05 Shinichiro Hamaji <hamaji@chromium.org>

Bug 26160: Compile fails in MacOSX when GNU fileutils are installed

<https://bugs.webkit.org/show_bug.cgi?id=26160>

Reviewed by Alexey Proskuryakov.

Use /bin/ln instead of ln for cases where this command is used with -h option.
As this option is not supported by GNU fileutils, this change helps users
who have GNU fileutils in their PATH.

WebCore:

2009-06-05 Shinichiro Hamaji <hamaji@chromium.org>

Bug 26160: Compile fails in MacOSX when GNU fileutils are installed

<https://bugs.webkit.org/show_bug.cgi?id=26160>

Reviewed by Alexey Proskuryakov.

Use /bin/ln instead of ln for cases where this command is used with -h option.
As this option is not supported by GNU fileutils, this change helps users
who have GNU fileutils in their PATH.

  • WebCore.xcodeproj/project.pbxproj:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r44461 r44470  
     12009-06-05  Shinichiro Hamaji  <hamaji@chromium.org>
     2
     3        Bug 26160: Compile fails in MacOSX when GNU fileutils are installed
     4
     5        <https://bugs.webkit.org/show_bug.cgi?id=26160>
     6
     7        Reviewed by Alexey Proskuryakov.
     8
     9        Use /bin/ln instead of ln for cases where this command is used with -h option.
     10        As this option is not supported by GNU fileutils, this change helps users
     11        who have GNU fileutils in their PATH.
     12
     13        * JavaScriptCore.xcodeproj/project.pbxproj:
     14
    1152009-06-05  Gavin Barraclough  <barraclough@apple.com>
    216
  • trunk/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj

    r44452 r44470  
    20642064                        runOnlyForDeploymentPostprocessing = 0;
    20652065                        shellPath = /bin/sh;
    2066                         shellScript = "mkdir -p \"${BUILT_PRODUCTS_DIR}/DerivedSources/JavaScriptCore/docs\"\ncd \"${BUILT_PRODUCTS_DIR}/DerivedSources/JavaScriptCore\"\n\nln -sfh \"${SRCROOT}\" JavaScriptCore\nexport JavaScriptCore=\"JavaScriptCore\"\nexport BUILT_PRODUCTS_DIR=\"../..\"\n\nmake -f \"JavaScriptCore/DerivedSources.make\" -j `/usr/sbin/sysctl -n hw.ncpu`\n";
     2066                        shellScript = "mkdir -p \"${BUILT_PRODUCTS_DIR}/DerivedSources/JavaScriptCore/docs\"\ncd \"${BUILT_PRODUCTS_DIR}/DerivedSources/JavaScriptCore\"\n\n/bin/ln -sfh \"${SRCROOT}\" JavaScriptCore\nexport JavaScriptCore=\"JavaScriptCore\"\nexport BUILT_PRODUCTS_DIR=\"../..\"\n\nmake -f \"JavaScriptCore/DerivedSources.make\" -j `/usr/sbin/sysctl -n hw.ncpu`\n";
    20672067                };
    20682068                9319586B09D9F91A00A56FD4 /* Check For Global Initializers */ = {
  • trunk/WebCore/ChangeLog

    r44468 r44470  
     12009-06-05  Shinichiro Hamaji  <hamaji@chromium.org>
     2
     3        Bug 26160: Compile fails in MacOSX when GNU fileutils are installed
     4
     5        <https://bugs.webkit.org/show_bug.cgi?id=26160>
     6
     7        Reviewed by Alexey Proskuryakov.
     8
     9        Use /bin/ln instead of ln for cases where this command is used with -h option.
     10        As this option is not supported by GNU fileutils, this change helps users
     11        who have GNU fileutils in their PATH.
     12
     13        * WebCore.xcodeproj/project.pbxproj:
     14
    1152009-06-03  Ben Murdoch  <benm@google.com>
    216
  • trunk/WebCore/WebCore.xcodeproj/project.pbxproj

    r44435 r44470  
    1703217032                        runOnlyForDeploymentPostprocessing = 0;
    1703317033                        shellPath = /bin/sh;
    17034                         shellScript = "mkdir -p \"${BUILT_PRODUCTS_DIR}/DerivedSources/WebCore\"\ncd \"${BUILT_PRODUCTS_DIR}/DerivedSources/WebCore\"\n\nexport CREATE_HASH_TABLE=\"${JAVASCRIPTCORE_PRIVATE_HEADERS_DIR}/create_hash_table\"\n\nln -sfh \"${SRCROOT}\" WebCore\nexport WebCore=\"WebCore\"\n\nif [ \"${ACTION}\" = \"build\" -o \"${ACTION}\" = \"install\" -o \"${ACTION}\" = \"installhdrs\" ]; then\n    make -f \"WebCore/DerivedSources.make\" -j `/usr/sbin/sysctl -n hw.availcpu`\nfi\n";
     17034                        shellScript = "mkdir -p \"${BUILT_PRODUCTS_DIR}/DerivedSources/WebCore\"\ncd \"${BUILT_PRODUCTS_DIR}/DerivedSources/WebCore\"\n\nexport CREATE_HASH_TABLE=\"${JAVASCRIPTCORE_PRIVATE_HEADERS_DIR}/create_hash_table\"\n\n/bin/ln -sfh \"${SRCROOT}\" WebCore\nexport WebCore=\"WebCore\"\n\nif [ \"${ACTION}\" = \"build\" -o \"${ACTION}\" = \"install\" -o \"${ACTION}\" = \"installhdrs\" ]; then\n    make -f \"WebCore/DerivedSources.make\" -j `/usr/sbin/sysctl -n hw.availcpu`\nfi\n";
    1703517035                };
    1703617036/* End PBXShellScriptBuildPhase section */
Note: See TracChangeset for help on using the changeset viewer.