diff options
author | necoro <> | 2007-05-14 18:52:04 +0000 |
---|---|---|
committer | necoro <> | 2007-05-14 18:52:04 +0000 |
commit | 48a4f88747307ce41a07b4fa55411b44b9269eb7 (patch) | |
tree | b5d978867f74aedb2183d862758075f6ce255f49 /portato/gui | |
parent | be5997284de46af17f1e169dc94beb9e85462dd3 (diff) | |
download | portato-48a4f88747307ce41a07b4fa55411b44b9269eb7.tar.gz portato-48a4f88747307ce41a07b4fa55411b44b9269eb7.tar.bz2 portato-48a4f88747307ce41a07b4fa55411b44b9269eb7.zip |
filtering "--ask" fron EMERGE_DEFAULT_OPTS
Diffstat (limited to 'portato/gui')
-rw-r--r-- | portato/gui/gui_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/gui_helper.py b/portato/gui/gui_helper.py index df4e1d7..9907a1c 100644 --- a/portato/gui/gui_helper.py +++ b/portato/gui/gui_helper.py @@ -513,7 +513,7 @@ class EmergeQueue: self.console.set_pty(master) # start emerge - self.process = Popen(command+options+packages, stdout = slave, stderr = STDOUT, shell = False) + self.process = Popen(command+options+packages, stdout = slave, stderr = STDOUT, shell = False, env = system.get_environment()) # start thread waiting for the stop of emerge Thread(name="Emerge-Thread", target=self._update_packages, args=(packages+self.deps.keys(),)).start() |