Changeset 24711 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jul 27, 2007, 1:33:17 AM (18 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r24710 r24711 1 2007-07-27 Simon Hausmann <[email protected]> 2 3 Done with and reviewed by Lars and Zack. 4 5 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. 6 7 * JavaScriptCore.pri: 8 1 9 2007-07-27 Simon Hausmann <[email protected]> 2 10 -
trunk/JavaScriptCore/JavaScriptCore.pri
r24692 r24711 118 118 # GENERATOR 2: bison grammar 119 119 kjsbison.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}.h120 kjsbison.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 121 121 kjsbison.depend = ${QMAKE_FILE_NAME} 122 122 kjsbison.input = KJSBISON
Note:
See TracChangeset
for help on using the changeset viewer.