mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 03:51:18 +00:00
Fix formatting of path assignment in msvc_build_libraries.py
This commit is contained in:
committed by
Christoffer Lerno
parent
10d369d766
commit
373013046d
@@ -239,7 +239,7 @@ def copy(src, dst):
|
||||
base = os.path.basename(low)
|
||||
if base == "msvcrt.lib" or base == "oldnames.lib":
|
||||
base = base[:-3].upper() + "lib"
|
||||
path = os.path.join(os.path.dirname(low), base);
|
||||
path = os.path.join(os.path.dirname(low), base)
|
||||
shutil.copy(src, path)
|
||||
shutil.copy(src, low)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user