Changing WorkDir in order to make compatible with changing package names.

This commit is contained in:
Semen Cirit
2009-05-14 09:27:17 +00:00
parent 9eee1ccf73
commit 85fc38c291
+1 -1
View File
@@ -26,7 +26,7 @@ import pisi.actionsapi.get as get
from pisi.actionsapi.shelltools import *
from pisi.actionsapi.pisitools import dodoc, dodir, domove, dosym, insinto, removeDir
WorkDir = "%s-%s" % (get.srcNAME(), get.srcVERSION().split('_')[-1])
WorkDir = "texlive-%s-%s" % (get.srcNAME().split('-')[-1], get.srcVERSION().split('_')[-1])
class CompileError(pisi.actionsapi.Error):
def __init__(self, value=''):