diff options
author | Przemyslaw Pawelczyk <przemoc@zoho.com> | 2016-11-22 23:01:02 +0100 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-12-26 09:59:56 +0000 |
commit | e5af917464c22e4b641b125399b11c996cdf9aa8 (patch) | |
tree | 99a6f7de3e83172bb5363c9d7cae4a82626b5719 /main/binutils/APKBUILD | |
parent | 871a3ac176113874b2a08d0f4a26464004f507a8 (diff) | |
download | aports-e5af917464c22e4b641b125399b11c996cdf9aa8.tar.bz2 aports-e5af917464c22e4b641b125399b11c996cdf9aa8.tar.xz |
main/binutils: Enable deterministic archives.
"GNU ar and other tools from binutils have a deterministic mode which
will use zero for UIDs, GIDs, timestamps, and use consistent file modes
for all files. It can be made the default by passing the
--enable-deterministic-archives option to ./configure."
Quoted from:
https://reproducible-builds.org/docs/archives/
Diffstat (limited to 'main/binutils/APKBUILD')
-rw-r--r-- | main/binutils/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/binutils/APKBUILD b/main/binutils/APKBUILD index cda0c35442..8bacc931c2 100644 --- a/main/binutils/APKBUILD +++ b/main/binutils/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=binutils pkgver=2.27 -pkgrel=0 +pkgrel=1 pkgdesc="Tools necessary to build programs" url="http://www.gnu.org/software/binutils/" depends="" @@ -51,6 +51,7 @@ build() { --enable-64-bit-bfd \ --enable-plugins \ --enable-relro \ + --enable-deterministic-archives \ $_cross_configure \ --disable-werror \ --disable-nls \ |