diff options
author | 2007-08-16 17:59:21 +0000 | |
---|---|---|
committer | 2007-08-16 17:59:21 +0000 | |
commit | 9c8fe1b9d95ea9402006573538badabf81835155 (patch) | |
tree | 6000c1895b2dab112f34a5b19c98089c8f3adf2a /eclass | |
parent | Version bump. (diff) | |
download | gentoo-2-9c8fe1b9d95ea9402006573538badabf81835155.tar.gz gentoo-2-9c8fe1b9d95ea9402006573538badabf81835155.tar.bz2 gentoo-2-9c8fe1b9d95ea9402006573538badabf81835155.zip |
Add switch to disable gettext conversion.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vdr-plugin.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/vdr-plugin.eclass b/eclass/vdr-plugin.eclass index 3dd4c3cfa338..5e562a9cc668 100644 --- a/eclass/vdr-plugin.eclass +++ b/eclass/vdr-plugin.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.48 2007/08/14 18:42:22 zzam Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.49 2007/08/16 17:59:21 zzam Exp $ # # Author: # Matthias Schwarzott <zzam@gentoo.org> @@ -280,7 +280,7 @@ vdr-plugin_src_unpack() { # Remove i18n Target if using older vdr sed -i Makefile \ -e '/^all:/s/ i18n//' - elif [[ ${USE_GETTEXT} = 1 && ! -d po ]]; then + elif [[ ${USE_GETTEXT} = 1 && ! -d po && ${NO_GETTEXT_HACK} != 1 ]]; then einfo "Converting translations to gettext" local i18n_tool=/usr/share/vdr/bin/i18n-to-gettext.pl |