summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2012-01-30 13:11:27 +0000
committerJustin Lecher <jlec@gentoo.org>2012-01-30 13:11:27 +0000
commit0bee7a5964b54969b92ffeb4f1d8185bff85fd6b (patch)
tree1bc15c4283c524ec35762379401babf263690b27 /eclass
parentFix installation of source files. Thanks to Krzysztof Magusiak <chrmag@poczta... (diff)
downloadhistorical-0bee7a5964b54969b92ffeb4f1d8185bff85fd6b.tar.gz
historical-0bee7a5964b54969b92ffeb4f1d8185bff85fd6b.tar.bz2
historical-0bee7a5964b54969b92ffeb4f1d8185bff85fd6b.zip
Call glib-gettextize with --force in autotools-utils.eclass
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/autotools-utils.eclass4
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 4df157828ce4..191c747be835 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.103 2012/01/22 00:55:15 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.104 2012/01/30 13:11:27 jlec Exp $
+
+ 30 Jan 2012; Justin Lecher <jlec@gentoo.org> autotools-utils.eclass:
+ Call glib-gettextize with --force in autotools-utils.eclass
21 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> cmake-utils.eclass:
Dont force CMAKE_BUILD_WITH_INSTALL_RPATH in APPLE prefix on request from
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