Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/makescripts/systeminstall.py
diff options
context:
space:
mode:
Diffstat (limited to 'makescripts/systeminstall.py')
-rw-r--r--makescripts/systeminstall.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/makescripts/systeminstall.py b/makescripts/systeminstall.py
index 9bc43bd..faad71e 100644
--- a/makescripts/systeminstall.py
+++ b/makescripts/systeminstall.py
@@ -36,7 +36,10 @@ if user == 'root':
info.lower_name)
os.system('cp data/* /usr/share/%s/' % info.lower_name)
os.system('cp *.py /usr/share/%s/' % info.lower_name)
- os.system('cp *.svg /usr/share/%s/icons' % info.lower_name)
+ os.system('cp desktop/icons/*.svg /usr/share/%s/icons' %\
+ info.lower_name)
+ os.system('cp %s.png /usr/share/%s/' % (info.lower_name,
+ info.lower_name))
for i in os.listdir('locale'):
if not os.path.exists(os.path.join('/usr/share/locale', i)):
os.mkdir(os.path.join('/usr/share/locale', i))