diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-01-30 13:11:27 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-01-30 13:11:27 +0000 |
commit | 0bee7a5964b54969b92ffeb4f1d8185bff85fd6b (patch) | |
tree | 1bc15c4283c524ec35762379401babf263690b27 /eclass/autotools-utils.eclass | |
parent | Fix installation of source files. Thanks to Krzysztof Magusiak <chrmag@poczta... (diff) | |
download | historical-0bee7a5964b54969b92ffeb4f1d8185bff85fd6b.tar.gz historical-0bee7a5964b54969b92ffeb4f1d8185bff85fd6b.tar.bz2 historical-0bee7a5964b54969b92ffeb4f1d8185bff85fd6b.zip |
Call glib-gettextize with --force in autotools-utils.eclass
Diffstat (limited to 'eclass/autotools-utils.eclass')
-rw-r--r-- | eclass/autotools-utils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/autotools-utils.eclass b/eclass/autotools-utils.eclass index 7ed6856529e4..59e58afe9f45 100644 --- a/eclass/autotools-utils.eclass +++ b/eclass/autotools-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.45 2012/01/21 20:44:28 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.46 2012/01/30 13:11:27 jlec Exp $ # @ECLASS: autotools-utils.eclass # @MAINTAINER: @@ -306,7 +306,7 @@ autotools-utils_autoreconf() { # gettext if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then - echo 'no' | autotools_run_tool glib-gettextize --copy + echo 'no' | autotools_run_tool glib-gettextize --copy --force elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then eautopoint --force fi |