Changeset 3706d93 in mainline for meson.build
- Timestamp:
- 2019-08-17T12:49:43Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 318af1a
- Parents:
- 512579c
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-06-29 10:48:33)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-08-17 12:49:43)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
meson.build
r512579c r3706d93 52 52 ) 53 53 54 gzip = generator(find_program('gzip', 55 arguments: [ '--no-name', '-9', '--stdout', '@INPUT@' ] 56 output: '@PLAINNAME@.gz', 57 capture: true, 58 ) 54 # TODO: bug in Meson 55 #gzip = generator(find_program('gzip'), 56 # arguments: [ '--no-name', '-9', '--stdout', '@INPUT@' ], 57 # output: '@PLAINNAME@.gz', 58 # capture: true, 59 #) 60 61 gzip = [ find_program('gzip'), '--no-name', '-9', '--stdout', '@INPUT@' ] 59 62 60 63 # Tar's arguments make sure that the archive is reproducible. … … 165 168 'GRUB_ARCH', 166 169 'UIMAGE_OS', 170 'CONFIG_COMPRESSED_INIT', 167 171 ] 168 172
Note:
See TracChangeset
for help on using the changeset viewer.