Skip to content

Commit 8c740d6

Browse files
committed
Try random fix for AppVeyor
1 parent a5ef5e9 commit 8c740d6

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

python/setup.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -453,12 +453,7 @@ def get_ext_built_api_header(self, name):
453453
def get_ext_built(self, name):
454454
if sys.platform == 'win32':
455455
head, tail = os.path.split(name)
456-
# Visual Studio seems to differ from other generators in
457-
# where it places output files.
458-
if self.cmake_generator.startswith('Visual Studio'):
459-
return pjoin(head, self.build_type, tail + ext_suffix)
460-
else:
461-
return pjoin(head, tail + ext_suffix)
456+
return pjoin(head, self.build_type, tail + ext_suffix)
462457
else:
463458
return pjoin(self.build_type, name + ext_suffix)
464459

0 commit comments

Comments
 (0)