Skip to content
Snippets Groups Projects
Commit a261776a authored by Oz Linden's avatar Oz Linden
Browse files

merge cygwin fix

parents 4be01b73 9635923d
Branches
Tags
No related merge requests found
...@@ -33,6 +33,8 @@ ...@@ -33,6 +33,8 @@
_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+(.*)$')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment