diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2017-05-31 15:35:20 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2017-05-31 15:38:44 +0200 |
| commit | e72ccf8d6a5f167ef5e3b4df19c19bcb9f5ed263 (patch) | |
| tree | 24a3878574de8e08cb7845cc4513230ccbce4c8c /Makefile | |
| parent | 04486663595085e91e5e766d58181c6e1b517c17 (diff) | |
| download | vis-e72ccf8d6a5f167ef5e3b4df19c19bcb9f5ed263.tar.gz vis-e72ccf8d6a5f167ef5e3b4df19c19bcb9f5ed263.tar.xz | |
build: try to make docker build reproducible
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -79,7 +79,8 @@ vis-single-payload.inc: $(EXECUTABLES) lua/* echo '#ifndef VIS_SINGLE_PAYLOAD_H' > $@ echo '#define VIS_SINGLE_PAYLOAD_H' >> $@ echo 'static unsigned char vis_single_payload[] = {' >> $@ - tar c $(EXECUTABLES) $$(find lua -name '*.lua') | xz | od -t x1 -A none -v | \ + 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 | \ sed 's/\([0-9a-f]\+\)/0x\1,/g;$$s/,$$/ };/' >> $@ echo '#endif' >> $@ |
