Ignore:
Timestamp:
Jul 27, 2007, 1:33:17 AM (18 years ago)
Author:
hausmann
Message:

Use $(MOVE) instead of mv to eliminated the shell dependency and replaced the long shell line to call bison and modify the css grammar file with a few lines of portable perl code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/JavaScriptCore.pri

    r24692 r24711  
    118118# GENERATOR 2: bison grammar
    119119kjsbison.output = tmp/${QMAKE_FILE_BASE}.cpp
    120 kjsbison.commands = bison -d -p kjsyy ${QMAKE_FILE_NAME} -o ${QMAKE_FILE_BASE}.tab.c && mv ${QMAKE_FILE_BASE}.tab.c ${QMAKE_FILE_OUT} && mv ${QMAKE_FILE_BASE}.tab.h tmp/${QMAKE_FILE_BASE}.h
     120kjsbison.commands = bison -d -p kjsyy ${QMAKE_FILE_NAME} -o ${QMAKE_FILE_BASE}.tab.c && $(MOVE) ${QMAKE_FILE_BASE}.tab.c ${QMAKE_FILE_OUT} && $(MOVE) ${QMAKE_FILE_BASE}.tab.h tmp/${QMAKE_FILE_BASE}.h
    121121kjsbison.depend = ${QMAKE_FILE_NAME}
    122122kjsbison.input = KJSBISON
Note: See TracChangeset for help on using the changeset viewer.