diff options
| author | Christian Hesse <mail@eworm.de> | 2017-06-01 12:10:38 +0200 |
|---|---|---|
| committer | Christian Hesse <mail@eworm.de> | 2017-06-01 12:10:38 +0200 |
| commit | 7e824a4f39cdd6c7ffb6b2a505cf9c14fbe69190 (patch) | |
| tree | 38088ed108e87e7aa88abc45a1ae33c38fe785d0 | |
| parent | c2568c171065a04911b4cae17a1adf471ed2bd95 (diff) | |
| download | vis-7e824a4f39cdd6c7ffb6b2a505cf9c14fbe69190.tar.gz vis-7e824a4f39cdd6c7ffb6b2a505cf9c14fbe69190.tar.xz | |
build: use single threaded compression for reproducible builds
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -80,7 +80,7 @@ vis-single-payload.inc: $(EXECUTABLES) lua/* echo '#define VIS_SINGLE_PAYLOAD_H' >> $@ echo 'static unsigned char vis_single_payload[] = {' >> $@ tar --sort=name --mtime='2014-07-15 01:23Z' --owner=0 --group=0 --numeric-owner -c \ - $(EXECUTABLES) $$(find lua -name '*.lua') | xz | od -t x1 -A none -v | \ + $(EXECUTABLES) $$(find lua -name '*.lua') | xz -T 1 | od -t x1 -A none -v | \ sed 's/\([0-9a-f]\+\)/0x\1,/g;$$s/,$$/ };/' >> $@ echo '#endif' >> $@ |
