diff options
Diffstat (limited to 'mesonbuild/scripts')
-rw-r--r-- | mesonbuild/scripts/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/scripts/__init__.py b/mesonbuild/scripts/__init__.py index b2f2258..af6bedc 100644 --- a/mesonbuild/scripts/__init__.py +++ b/mesonbuild/scripts/__init__.py @@ -14,7 +14,7 @@ def destdir_join(d1, d2): # c:\destdir + c:\prefix must produce c:\destdir\prefix - if len(d1) > 1 and d1[1] == ':' and \ - len(d2) > 1 and d2[1] == ':': + if len(d1) > 1 and d1[1] == ':' \ + and len(d2) > 1 and d2[1] == ':': return d1 + d2[2:] return d1 + d2 |