mirror of https://github.com/GNOME/gimp.git
meson: fix inserting generation date and time in authors.md.
This commit is contained in:
parent
8fcf4c44f9
commit
ccb8a7be2e
|
@ -1751,12 +1751,13 @@ custom_target('AUTHORS',
|
|||
],
|
||||
build_by_default: false,
|
||||
)
|
||||
date = run_command('date', '--iso-8601=seconds', check: true)
|
||||
custom_target('authors.md',
|
||||
input : [ 'authors4gimp-web.xsl', 'authors.xml', ],
|
||||
output: 'authors.md',
|
||||
command: [
|
||||
xsltproc,
|
||||
'--stringparam', 'today', '`date --iso-8601=seconds`',
|
||||
'--stringparam', 'today', date.stdout().strip(),
|
||||
'-o', '@OUTPUT@',
|
||||
'@INPUT@',
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue