summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-05-07 20:31:07 +0200
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-05-07 20:31:07 +0200
commit23cf69ca9a8e6fb82f98a12593f483a36dee8535 (patch)
treecdb2687b4434bb8e98cda89a4957c05f8ece252c
parent227c97b5758e7f4ae88ef9544e3e2d5d59c43c94 (diff)
windows: fix check for already downloaded files
-rw-r--r--cerbero/bootstrap/windows.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cerbero/bootstrap/windows.py b/cerbero/bootstrap/windows.py
index fb66ad2..9554b68 100644
--- a/cerbero/bootstrap/windows.py
+++ b/cerbero/bootstrap/windows.py
@@ -84,7 +84,7 @@ class WindowsBootstraper(BootstraperBase):
self.platform, self.arch)
tarfile = os.path.join(self.prefix, tarball)
- tarfile = to_unixpath(os.path.abspath(tarfile))
+ tarfile = os.path.abspath(tarfile)
shell.download("%s/%s" % (MINGW_DOWNLOAD_SOURCE, tarball), tarfile)
try:
shell.unpack(tarfile, self.prefix)