Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Francis <francis@sugarlabs.org>2012-09-12 00:42:43 (GMT)
committer Daniel Francis <francis@sugarlabs.org>2012-09-12 00:42:43 (GMT)
commitc6884bb82b5c1529f068f1249d5bc4155ed5fc42 (patch)
treee814e0a1d6f1a7e28ac94c177bb6f3973f6b1de4
parentb2fed24d1537b96096d7817dd2e5189dac3172d9 (diff)
Fix icon showing problem
-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))