8 lines
164 B
Bash
8 lines
164 B
Bash
|
gettextDataDirsHook() {
|
||
|
if [ -d "$1/share/gettext" ]; then
|
||
|
addToSearchPath GETTEXTDATADIRS "$1/share/gettext"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
envHooks+=(gettextDataDirsHook)
|