diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-02-04 11:55:19 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-02-06 19:37:17 +0100 |
| commit | aabcd11ba69022c6ae24c36d56e107b530fee8ad (patch) | |
| tree | 3c7e45f7fae72344e9b6c12746a4a3f971d09423 /contrib/gitian-descriptors/deps-linux.yml | |
| parent | gitian: Make linux build of OpenSSL deterministic (diff) | |
| download | discoin-aabcd11ba69022c6ae24c36d56e107b530fee8ad.tar.xz discoin-aabcd11ba69022c6ae24c36d56e107b530fee8ad.zip | |
gitian: Make linux boost dependency completely deterministic
It appears that the output was different every time.
This doesn't affect the final bitcoind/bitcoin-qt, but is confusing
nevertheless.
Fix it by using FAKETIME and zipping files in deterministic order.
Diffstat (limited to 'contrib/gitian-descriptors/deps-linux.yml')
| -rw-r--r-- | contrib/gitian-descriptors/deps-linux.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/gitian-descriptors/deps-linux.yml b/contrib/gitian-descriptors/deps-linux.yml index fc624d899..858566145 100644 --- a/contrib/gitian-descriptors/deps-linux.yml +++ b/contrib/gitian-descriptors/deps-linux.yml @@ -56,7 +56,7 @@ script: | cd qrencode-3.4.3 unset FAKETIME # unset fake time during configure, as it does some clock sanity tests # need --with-pic to avoid relocation error in 64 bit builds - ./configure --prefix=$STAGING --enable-static --disable-shared --with-pic --without-tools --disable-dependency-tracking --without-zlib + ./configure --prefix=$STAGING --enable-static --disable-shared --with-pic --without-tools --disable-dependency-tracking # Workaround to prevent re-configuring by make; make all files have a date in the past find . -print0 | xargs -r0 touch -t 200001010000 export FAKETIME=$REFERENCE_DATETIME @@ -68,7 +68,7 @@ script: | mkdir -p $STAGING/host/bin unset FAKETIME # unset fake time during configure, as it does some clock sanity tests # need --with-pic to avoid relocation error in 64 bit builds - ./configure --prefix=$STAGING --bindir=$STAGING/host/bin --enable-static --disable-shared --with-pic + ./configure --prefix=$STAGING --bindir=$STAGING/host/bin --enable-static --disable-shared --with-pic --without-zlib # Workaround to prevent re-configuring by make; make all files have a date in the past find . -print0 | xargs -r0 touch -t 200001010000 export FAKETIME=$REFERENCE_DATETIME |