aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Gaffney <agaffney@gentoo.org>2005-10-21 01:52:49 +0000
committerAndrew Gaffney <agaffney@gentoo.org>2005-10-21 01:52:49 +0000
commitb382f3e17252156a7a88abdc80aa0d7b415c8ff0 (patch)
treeb3d30748bf335f284f412a70648eb3bcde786d99 /src
parent src/GLIUtility.py, src/GLIArchitectureTemplate.py: (diff)
downloadgli-b382f3e17252156a7a88abdc80aa0d7b415c8ff0.tar.gz
gli-b382f3e17252156a7a88abdc80aa0d7b415c8ff0.tar.bz2
gli-b382f3e17252156a7a88abdc80aa0d7b415c8ff0.zip
add unpack progress to portage snapshot
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/gli/trunk@981 f8877401-5920-0410-a79b-8e2d7e04ca0d
Diffstat (limited to 'src')
-rw-r--r--src/GLIArchitectureTemplate.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GLIArchitectureTemplate.py b/src/GLIArchitectureTemplate.py
index 11ed708..e9d47c8 100644
--- a/src/GLIArchitectureTemplate.py
+++ b/src/GLIArchitectureTemplate.py
@@ -5,7 +5,7 @@
# of which can be found in the main directory of this project.
Gentoo Linux Installer
-$Id: GLIArchitectureTemplate.py,v 1.211 2005/10/21 01:50:00 agaffney Exp $
+$Id: GLIArchitectureTemplate.py,v 1.212 2005/10/21 01:52:49 agaffney Exp $
The ArchitectureTemplate is largely meant to be an abstract class and an
interface (yes, it is both at the same time!). The purpose of this is to create
@@ -559,7 +559,7 @@ class ArchitectureTemplate:
portage_tree_snapshot_uri = self._install_profile.get_portage_tree_snapshot_uri()
if portage_tree_snapshot_uri:
# Fetch and unpack the tarball
- GLIUtility.fetch_and_unpack_tarball(portage_tree_snapshot_uri, self._chroot_dir + "/usr/", self._chroot_dir + "/")
+ GLIUtility.fetch_and_unpack_tarball(portage_tree_snapshot_uri, self._chroot_dir + "/usr/", self._chroot_dir + "/", cc=self._cc)
self._logger.log("Portage tree install was custom.")
elif sync_type == "sync":
exitstatus = GLIUtility.spawn("emerge sync", chroot=self._chroot_dir, display_on_tty8=True, logfile=self._compile_logfile, append_log=True)