diff options
author | Guillem Jover <guillem@hadrons.org> | 2020-09-21 00:25:50 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-10-09 23:57:30 +0900 |
commit | 51ccdbfbed79bae4b9c2529ec980de4508455a47 (patch) | |
tree | bb98ebc6dd0a8231d9221e69e95b6783e080c50c /scripts | |
parent | 08beb669cb3f11ff5e05055bcab5e29385e69f98 (diff) | |
download | linux-stable-51ccdbfbed79bae4b9c2529ec980de4508455a47.tar.gz linux-stable-51ccdbfbed79bae4b9c2529ec980de4508455a47.tar.bz2 linux-stable-51ccdbfbed79bae4b9c2529ec980de4508455a47.zip |
builddeb: Pass -n to gzip for reproducible packages
We should not be encoding the timestamp, otherwise we end up generating
unreproducible files that cascade into unreproducible packages.
Signed-off-by: Guillem Jover <guillem@hadrons.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/package/builddeb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/package/builddeb b/scripts/package/builddeb index 44f212e37935..30e8c6a20171 100755 --- a/scripts/package/builddeb +++ b/scripts/package/builddeb @@ -31,7 +31,7 @@ create_package() { mkdir -p "$pdir/usr/share/doc/$pname" cp debian/copyright "$pdir/usr/share/doc/$pname/" cp debian/changelog "$pdir/usr/share/doc/$pname/changelog.Debian" - gzip -9 "$pdir/usr/share/doc/$pname/changelog.Debian" + gzip -n -9 "$pdir/usr/share/doc/$pname/changelog.Debian" sh -c "cd '$pdir'; find . -type f ! -path './DEBIAN/*' -printf '%P\0' \ | xargs -r0 md5sum > DEBIAN/md5sums" |