2017-12-04 04:30:45 +00:00
|
|
|
gettextDataDirsHook() {
|
2018-05-07 17:07:19 +00:00
|
|
|
# See pkgs/build-support/setup-hooks/role.bash
|
|
|
|
getHostRoleEnvHook
|
2017-12-04 04:30:45 +00:00
|
|
|
if [ -d "$1/share/gettext" ]; then
|
2018-05-07 17:07:19 +00:00
|
|
|
addToSearchPath "GETTEXTDATADIRS${role_post}" "$1/share/gettext"
|
2017-12-04 04:30:45 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2018-01-06 13:32:30 +00:00
|
|
|
addEnvHooks "$hostOffset" gettextDataDirsHook
|
2018-03-14 19:14:21 +00:00
|
|
|
|
|
|
|
# libintl must be listed in load flags on non-Glibc
|
|
|
|
# it doesn't hurt to have it in Glibc either though
|
2019-10-29 23:58:57 +00:00
|
|
|
if [ -n "@gettextNeedsLdflags@" -a -z "${dontAddExtraLibs-}" ]; then
|
2018-05-07 17:07:19 +00:00
|
|
|
# See pkgs/build-support/setup-hooks/role.bash
|
|
|
|
getHostRole
|
2020-04-28 04:08:48 +00:00
|
|
|
export NIX_LDFLAGS${role_post}+=" -lintl"
|
2018-03-15 00:07:43 +00:00
|
|
|
fi
|