Changeset 093e956 in mainline for tools/config.py


Ignore:
Timestamp:
2019-06-25T14:08:30Z (5 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
536ab4f
Parents:
15e0b4d
Message:

Fix invalid newline in Makefile.config

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/config.py

    r15e0b4d r093e956  
    586586        outmk.write('TIMESTAMP_UNIX = %d\n' % timestamp_unix)
    587587        outmc.write('#define TIMESTAMP_UNIX %d\n' % timestamp_unix)
    588         defs += ' "-DTIMESTAMP_UNIX=%d"\n' % timestamp_unix
     588        defs += ' "-DTIMESTAMP_UNIX=%d"' % timestamp_unix
    589589
    590590        outmk.write('TIMESTAMP = %s\n' % timestamp)
    591591        outmc.write('#define TIMESTAMP %s\n' % timestamp)
    592         defs += ' "-DTIMESTAMP=%s"\n' % timestamp
    593 
    594         outmk.write(defs)
     592        defs += ' "-DTIMESTAMP=%s"' % timestamp
     593
     594        outmk.write('%s\n' % defs)
    595595
    596596        outmk.close()
Note: See TracChangeset for help on using the changeset viewer.