mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
c01f509e44
if theres a source $stdenv then this is needed for structuredAttrs
19 lines
442 B
Bash
19 lines
442 B
Bash
if [ -e .attrs.sh ]; then source .attrs.sh; fi
|
|
# Glibc cannot have itself in its RPATH.
|
|
export NIX_NO_SELF_RPATH=1
|
|
|
|
source $stdenv/setup
|
|
|
|
postConfigure() {
|
|
# Hack: get rid of the `-static' flag set by the bootstrap stdenv.
|
|
# This has to be done *after* `configure' because it builds some
|
|
# test binaries.
|
|
export NIX_CFLAGS_LINK=
|
|
export NIX_LDFLAGS_BEFORE=
|
|
|
|
export NIX_DONT_SET_RPATH=1
|
|
unset CFLAGS
|
|
}
|
|
|
|
genericBuild
|