diff options
Diffstat (limited to 'src/chroot-tools/chcleanup.in')
-rw-r--r-- | src/chroot-tools/chcleanup.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/chroot-tools/chcleanup.in b/src/chroot-tools/chcleanup.in index d76989d..5351878 100644 --- a/src/chroot-tools/chcleanup.in +++ b/src/chroot-tools/chcleanup.in @@ -26,13 +26,21 @@ # leaves you with a cleansystem # # See: HOOKPREBUILD - +set -x set -eE DRYRUN=${DRYRUN:-false} # Statically include various library routines to avoid having # dependencies on outside files. +[[ -n ${TEXTDOMAIN:-} ]] || export TEXTDOMAIN='libretools' +[[ -n ${TEXTDOMAINDIR:-} ]] || export TEXTDOMAINDIR='/usr/share/locale' + +if type gettext &>/dev/null; then + _() { gettext "$@"; } +else + _() { echo "$@"; } +fi # Begin chcleanup.lib ########################################################## m4_include(chcleanup.lib) # End chcleanup.lib ############################################################ |