Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: modules/
Date: Mon, 29 Oct 2012 20:37:00
Message-Id: 1351542992.ef5b53925f4cfa578c4f659840213a46e6d43ef1.blueness@gentoo
1 commit: ef5b53925f4cfa578c4f659840213a46e6d43ef1
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 29 20:30:51 2012 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 29 20:36:32 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=ef5b5392
7
8 Do not break autopoint by cleaning out /usr/share/gettext in stage1
9
10 The problem comes in stage3 when you have packages that inherit autotools.eclass.
11 The eclass may make use of gettext and run autopoint which will fail if it doesn't
12 find /usr/share/gettext/archive.dir.tar.gz.
13
14 X-Gentoo-Bug: 439636
15 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=439636
16 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
17
18 ---
19 modules/stage1_target.py | 2 +-
20 1 files changed, 1 insertions(+), 1 deletions(-)
21
22 diff --git a/modules/stage1_target.py b/modules/stage1_target.py
23 index b97bd89..0a93c88 100644
24 --- a/modules/stage1_target.py
25 +++ b/modules/stage1_target.py
26 @@ -28,7 +28,7 @@ class stage1_target(generic_stage_target):
27
28 def set_cleanables(self):
29 generic_stage_target.set_cleanables(self)
30 - self.settings["cleanables"].extend(["/usr/share/gettext",\
31 + self.settings["cleanables"].extend([\
32 "/usr/lib/python2.2/test", "/usr/lib/python2.2/email",\
33 "/usr/lib/python2.2/lib-tk", "/usr/lib/python2.3/test",\
34 "/usr/lib/python2.3/email", "/usr/lib/python2.3/lib-tk",\