summaryrefslogtreecommitdiffstats
path: root/build_tools/bin/bld_resource.py
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2009-10-04 17:46:42 (GMT)
committerJames Meyer <james.meyer@operamail.com>2009-10-04 17:46:42 (GMT)
commitf6993de0b1cede7d19438928e1a4c008afdf3026 (patch)
treea5a9c8b3f80224599ea26e7bdd68b0d127950e32 /build_tools/bin/bld_resource.py
parent5008c91b9936a76407099023befdee55dcae08d6 (diff)
downloadlinhes_dev-f6993de0b1cede7d19438928e1a4c008afdf3026.zip
bld: remove space between dir and cmd when launching a terminal.
this allows terminal --default-working-directory= to work
Diffstat (limited to 'build_tools/bin/bld_resource.py')
-rw-r--r--build_tools/bin/bld_resource.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/build_tools/bin/bld_resource.py b/build_tools/bin/bld_resource.py
index aaba889..0fa8309 100644
--- a/build_tools/bin/bld_resource.py
+++ b/build_tools/bin/bld_resource.py
@@ -1924,7 +1924,9 @@ class Ui_MainWindow(object):
dir_list = self.find_pkgdir_ABS()
for item,dir in dir_list:
cmd = "%s" %(self.all_settings['konsole'])
- cmd = cmd + " " + " " + dir
+
+ cmd += dir
+ print cmd
cmd = cmd,
thread.start_new_thread(self.runcmd_thread, cmd)
@@ -2045,7 +2047,7 @@ class Ui_MainWindow(object):
dir_list = self.find_pkgdir()
for item,dir in dir_list:
cmd = "%s" %(self.all_settings['konsole'])
- cmd = cmd + " " + " " + dir
+ cmd += dir
cmd = cmd,
thread.start_new_thread(self.runcmd_thread, cmd)