feat(linja): remove drivename to fix problems with ninja

Remark: this is a little bit hackish, we should look for a better solution.
This commit is contained in:
Leonardo de Moura 2014-09-20 10:51:29 -07:00
parent 8867f47dd6
commit be9c59b9ff

View file

@ -134,7 +134,8 @@ def normalize_drive_name(name):
if drive == None:
return name
else:
return drive.lower() + path
# Leo: return drive.lower() + path
return path
else:
return name