Changeset 29402 in webkit for trunk/JavaScriptCore/pcre/pcre.pri


Ignore:
Timestamp:
Jan 11, 2008, 4:26:21 AM (17 years ago)
Author:
Simon Hausmann
Message:

Reviewed by Mark Rowe.

Fix the (clean) qmake build. For generating chartables.c we don't
depend on a separate input source file anymore, the dftables perl
script is enough. So use that instead as value for the .input
variable, to ensure that qmake also generates a rule to call dftables.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/pcre/pcre.pri

    r29395 r29402  
    2424
    2525# GENERATOR: "chartables.c": compile and execute the chartables generator (and add it to sources)
    26 ctgen.input = dftables
     26DFTABLES = $$PWD/dftables
     27ctgen.input = DFTABLES
    2728ctgen.output = $$GENERATED_SOURCES_DIR/chartables.c
    28 ctgen.commands = dftables ${QMAKE_FILE_OUT}
     29ctgen.commands = perl $$DFTABLES ${QMAKE_FILE_OUT}
    2930ctgen.CONFIG += target_predeps no_link
    3031ctgen.variable_out = GENERATED_SOURCES
Note: See TracChangeset for help on using the changeset viewer.