From 62da41415ccea4cd366fd8d07bd3c7c41894f1f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erkan=20I=C5=9EIK?= Date: Wed, 5 May 2021 21:19:34 +0300 Subject: [PATCH] thunderbird sym link fix --- network/mail/thunderbird/actions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/network/mail/thunderbird/actions.py b/network/mail/thunderbird/actions.py index adfa56aca4..792b2f506a 100644 --- a/network/mail/thunderbird/actions.py +++ b/network/mail/thunderbird/actions.py @@ -12,7 +12,8 @@ from pisi.actionsapi import shelltools def install(): pisitools.insinto("/opt/thunderbird", "*") shelltools.system("mkdir -p %s/usr/bin" % get.installDIR()) - shelltools.system("ln -s %s/opt/thunderbird/thunderbird %s/usr/bin/thunderbird" % (get.installDIR(), get.installDIR())) + #shelltools.system("ln -s /opt/thunderbird/thunderbird /usr/bin/thunderbird" ) + pisitools.dosym("/opt/thunderbird/thunderbird","/usr/bin/thunderbird") for i in ("16", "22", "24", "32", "48", "64", "128", "256"): pisitools.dodir("/usr/share/icons/hicolor/%sx%s/apps" % (i, i)) pisitools.domove("/opt/thunderbird/chrome/icons/default/default%s.png" % (i), "/usr/share/icons/hicolor/%sx%s/apps" % (i, i),"thunderbird.png")