stdenv: conservative undefined variables

main
happysalada 3 years ago committed by Raphael Megzari
parent e47b93b402
commit 0900850680
  1. 2
      pkgs/build-support/setup-hooks/autoreconf.sh
  2. 3
      pkgs/build-support/setup-hooks/reproducible-builds.sh

@ -1,4 +1,4 @@
preConfigurePhases+=" autoreconfPhase"
preConfigurePhases="${preConfigurePhases:-} autoreconfPhase"
autoreconfPhase() {
runHook preAutoreconf

@ -2,8 +2,9 @@
# This should ensure that it is deterministic across rebuilds of the same
# derivation and not easily collide with other builds.
# We also truncate the hash so that it cannot cause reference cycles.
export NIX_CFLAGS_COMPILE+=" -frandom-seed=$(
NIX_CFLAGS_COMPILE="${NIX_CFLAGS_COMPILE:-} -frandom-seed=$(
outbase="${out##*/}"
randomseed="${outbase:0:10}"
echo $randomseed
)"
export NIX_CFLAGS_COMPILE

Loading…
Cancel
Save