nixpkgs/pkgs/development/libraries/glibc-2.13/locales-builder.sh
Peter Simons 51e5c3b73d added glibc-2.13 again
svn path=/nixpkgs/branches/stdenv-updates/; revision=30030
2011-10-26 10:47:19 +00:00

18 lines
395 B
Bash

# 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