Changeset 48353 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Sep 14, 2009, 5:45:27 AM (16 years ago)
Author:
[email protected]
Message:

[Qt] Build fix for windows build.

Patch by Csaba Osztrogonac <[email protected]> on 2009-09-14
Reviewed by Tor Arne Vestbø.

JavaScriptCore

  • JavaScriptCore.pri: Correct a logic error.
  • pcre/dftables: Add missing paranthesis for tmpdir function.

WebKitTools:

  • Scripts/bisect-builds: Add missing paranthesis for tmpdir function.
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r48340 r48353  
     12009-09-14  Csaba Osztrogonac  <[email protected]>
     2
     3        Reviewed by Tor Arne Vestbø.
     4
     5        [Qt] Build fix for windows build.
     6
     7        * JavaScriptCore.pri: Correct a logic error.
     8        * pcre/dftables: Add missing paranthesis for tmpdir function.
     9
    1102009-09-12  Oliver Hunt  <[email protected]>
    211
  • trunk/JavaScriptCore/JavaScriptCore.pri

    r48296 r48353  
    123123    interpreter/RegisterFile.cpp
    124124
    125 win32-*:wince* {
     125win32-*|wince* {
    126126    SOURCES += jit/ExecutableAllocatorWin.cpp \
    127127               runtime/MarkStackWin.cpp
  • trunk/JavaScriptCore/pcre/dftables

    r44357 r48353  
    245245    my ($fh, $tempFile) = tempfile(
    246246        basename($0) . "-XXXXXXXX",
    247         DIR => File::Spec->tmpdir,
     247        DIR => File::Spec->tmpdir(),
    248248        SUFFIX => ".in",
    249249        UNLINK => 0,
Note: See TracChangeset for help on using the changeset viewer.