mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
2110c0bd30
Also fix some setup hooks that unnecessarily used environment hooks, which revolted in the same variable being modified too many times.
18 lines
528 B
Bash
18 lines
528 B
Bash
gettextDataDirsHook() {
|
|
# See pkgs/build-support/setup-hooks/role.bash
|
|
getHostRoleEnvHook
|
|
if [ -d "$1/share/gettext" ]; then
|
|
addToSearchPath "GETTEXTDATADIRS${role_post}" "$1/share/gettext"
|
|
fi
|
|
}
|
|
|
|
addEnvHooks "$hostOffset" gettextDataDirsHook
|
|
|
|
# libintl must be listed in load flags on non-Glibc
|
|
# it doesn't hurt to have it in Glibc either though
|
|
if [ ! -z "@gettextNeedsLdflags@" ]; then
|
|
# See pkgs/build-support/setup-hooks/role.bash
|
|
getHostRole
|
|
export NIX_${role_pre}LDFLAGS+=" -lintl"
|
|
fi
|