Skip to content

Commit b3ea091

Browse files
committed
Ignore environment on windows
1 parent 5677bb1 commit b3ea091

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def build_isa_l():
124124
subprocess.run(["make", "-j", str(cpu_count)], **run_args)
125125
subprocess.run(["make", "-j", str(cpu_count), "install"], **run_args)
126126
elif SYSTEM_IS_WINDOWS:
127-
subprocess.run(["nmake", "/E", "/f", "Makefile.nmake"], **run_args)
127+
subprocess.run(["nmake", "/f", "Makefile.nmake"], **run_args)
128128
Path(temp_prefix, "include").mkdir()
129129
print(temp_prefix, file=sys.stderr)
130130
shutil.copytree(os.path.join(build_dir, "include"),

0 commit comments

Comments
 (0)