mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
stdenv: conservative undefined variables
This commit is contained in:
parent
e47b93b402
commit
0900850680
@ -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…
Reference in New Issue
Block a user