Skip to content
Snippets Groups Projects
Commit d87fe1ea authored by Adam Borowski's avatar Adam Borowski
Browse files

common: don't store gzip timestamps

This makes the build reproducible.
parent ac861f49
No related branches found
No related tags found
No related merge requests found
......@@ -233,7 +233,7 @@ $(MANPAGES_WEBDIR_LINUX) $(MANPAGES_WEBDIR_WINDOWS):
man ./$< > $@
%.gz: %
gzip -c ./$* > $@
gzip -nc ./$* > $@
%.html: %
groff -mandoc -Thtml ./$< > $@
......
# Copyright 2014-2019, Intel Corporation
# Copyright 2014-2020, Intel Corporation
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
......@@ -283,7 +283,7 @@ endif
endif
%.gz: %
gzip -c ./$< > $@
gzip -nc ./$< > $@
%.txt: %
man ./$< > $@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment