Temporarily work around cygwin /cygdrive/c pathname in AUTOBUILD.
parent
f6abe4a228
commit
9635923d55
|
|
@ -33,6 +33,8 @@ import subprocess
|
||||||
_autobuild=os.getenv('AUTOBUILD',
|
_autobuild=os.getenv('AUTOBUILD',
|
||||||
'autobuild' if not ( sys.platform == 'win32' or sys.platform == 'cygwin')
|
'autobuild' if not ( sys.platform == 'win32' or sys.platform == 'cygwin')
|
||||||
else 'autobuild.cmd')
|
else 'autobuild.cmd')
|
||||||
|
# HACK: temporarily work around cygwin /cygdrive/c madness
|
||||||
|
_autobuild = re.sub(r"^/cygdrive/(.)/", r"\1:/", _autobuild)
|
||||||
|
|
||||||
pkg_line=re.compile('^([\w-]+):\s+(.*)$')
|
pkg_line=re.compile('^([\w-]+):\s+(.*)$')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue