Make stage1 clean up python 2.3 and 2.4, also.
authorChris Gianelloni <wolf31o2@gentoo.org>
Wed, 21 Dec 2005 17:18:28 +0000 (17:18 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Wed, 21 Dec 2005 17:18:28 +0000 (17:18 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@998 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
modules/stage1_target.py

index fcc8c50a13bfbf53f424388ab4096fe48d3014c9..c05ead2f65983c9fca3279b17cf8c08ea778434f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.485 2005/12/21 16:56:01 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.486 2005/12/21 17:18:28 wolf31o2 Exp $
+
+  21 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
+  modules/stage1_target.py:
+  Make stage1 clean up python 2.3 and 2.4, also.
 
   21 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org> README,
   targets/support/livecdfs-update.sh:
index cb1c904493cedb99258a096b90d0437e2e5a408c..000cf1fc7a35cf7ba03ec9607d95abc5ba488066 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2005 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/modules/stage1_target.py,v 1.20 2005/12/20 20:53:49 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/modules/stage1_target.py,v 1.21 2005/12/21 17:18:28 wolf31o2 Exp $
 
 """
 Builder class for a stage1 installation tarball build.
@@ -26,7 +26,14 @@ class stage1_target(generic_stage_target):
                 self.settings["destpath"]=normpath(self.settings["chroot_path"]+self.settings["root_path"])
        def set_cleanables(self):
                generic_stage_target.set_cleanables(self)
-               self.settings["cleanables"].extend(["/usr/share/gettext","/usr/lib/python2.2/test", "/usr/lib/python2.2/encodings","/usr/lib/python2.2/email", "/usr/lib/python2.2/lib-tk","/usr/share/zoneinfo"])
+               self.settings["cleanables"].extend(["/usr/share/gettext",\
+               "/usr/lib/python2.2/test", "/usr/lib/python2.2/encodings",\
+               "/usr/lib/python2.2/email", "/usr/lib/python2.2/lib-tk",\
+               "/usr/lib/python2.3/test", "/usr/lib/python2.3/encodings",\
+               "/usr/lib/python2.3/email", "/usr/lib/python2.3/lib-tk",\
+               "/usr/lib/python2.4/test", "/usr/lib/python2.4/encodings",\
+               "/usr/lib/python2.4/email", "/usr/lib/python2.4/lib-tk",\
+               "/usr/share/zoneinfo"])
 
         def override_chost(self):
             #if os.environ.has_key("CHOST"):