Changeset 093e956 in mainline
- Timestamp:
- 2019-06-25T14:08:30Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 536ab4f
- Parents:
- 15e0b4d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/config.py
r15e0b4d r093e956 586 586 outmk.write('TIMESTAMP_UNIX = %d\n' % timestamp_unix) 587 587 outmc.write('#define TIMESTAMP_UNIX %d\n' % timestamp_unix) 588 defs += ' "-DTIMESTAMP_UNIX=%d" \n' % timestamp_unix588 defs += ' "-DTIMESTAMP_UNIX=%d"' % timestamp_unix 589 589 590 590 outmk.write('TIMESTAMP = %s\n' % timestamp) 591 591 outmc.write('#define TIMESTAMP %s\n' % timestamp) 592 defs += ' "-DTIMESTAMP=%s" \n' % timestamp593 594 outmk.write( defs)592 defs += ' "-DTIMESTAMP=%s"' % timestamp 593 594 outmk.write('%s\n' % defs) 595 595 596 596 outmk.close()
Note:
See TracChangeset
for help on using the changeset viewer.