Changeset 38226 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Nov 7, 2008, 10:07:20 AM (17 years ago)
Author:
[email protected]
Message:

2008-11-07 Cameron Zwarich <[email protected]>

Not reviewed.

Change grammar.cpp to Grammar.cpp and grammar.h to Grammar.h in several
build scripts.

  • DerivedSources.make:
  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
  • JavaScriptCoreSources.bkl:
Location:
trunk/JavaScriptCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r38225 r38226  
     12008-11-07  Cameron Zwarich  <[email protected]>
     2
     3        Not reviewed.
     4
     5        Change grammar.cpp to Grammar.cpp and grammar.h to Grammar.h in several
     6        build scripts.
     7
     8        * DerivedSources.make:
     9        * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
     10        * JavaScriptCoreSources.bkl:
     11
    1122008-11-07  Alp Toker  <[email protected]>
    213
  • trunk/JavaScriptCore/DerivedSources.make

    r38205 r38226  
    3939    chartables.c \
    4040    DatePrototype.lut.h \
    41     grammar.cpp \
     41    Grammar.cpp \
    4242    Lexer.lut.h \
    4343    MathObject.lut.h \
     
    5858# JavaScript language grammar
    5959
    60 grammar.cpp: Grammar.y
     60Grammar.cpp: Grammar.y
    6161        bison -d -p kjsyy $< -o $@ > bison_out.txt 2>&1
    62         perl -p -e 'END { if ($$conflict) { unlink "grammar.cpp"; die; } } $$conflict ||= /conflict/' < bison_out.txt
    63         touch grammar.cpp.h
    64         touch grammar.hpp
    65         cat grammar.cpp.h grammar.hpp > grammar.h
    66         rm -f grammar.cpp.h grammar.hpp bison_out.txt
     62        perl -p -e 'END { if ($$conflict) { unlink "Grammar.cpp"; die; } } $$conflict ||= /conflict/' < bison_out.txt
     63        touch Grammar.cpp.h
     64        touch Grammar.hpp
     65        cat Grammar.cpp.h Grammar.hpp > Grammar.h
     66        rm -f Grammar.cpp.h Grammar.hpp bison_out.txt
    6767
    6868# character tables for PCRE
  • trunk/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj

    r38205 r38226  
    901901                                </File>
    902902                                <File
    903                                         RelativePath="$(WebKitOutputDir)\obj\$(ProjectName)\DerivedSources\grammar.cpp"
     903                                        RelativePath="$(WebKitOutputDir)\obj\$(ProjectName)\DerivedSources\Grammar.cpp"
    904904                                        >
    905905                                        <FileConfiguration
     
    938938                                </File>
    939939                                <File
    940                                         RelativePath="$(WebKitOutputDir)\obj\$(ProjectName)\DerivedSources\grammar.h"
     940                                        RelativePath="$(WebKitOutputDir)\obj\$(ProjectName)\DerivedSources\Grammar.h"
    941941                                        >
    942942                                </File>
  • trunk/JavaScriptCore/JavaScriptCoreSources.bkl

    r38205 r38226  
    4747    </set>
    4848    <set append="1" var="JSCORE_SOURCES_KJS">
    49         DerivedSources/JavaScriptCore/grammar.cpp
     49        DerivedSources/JavaScriptCore/Grammar.cpp
    5050        wtf/dtoa.cpp
    5151    </set>
Note: See TracChangeset for help on using the changeset viewer.