Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 008771c

Browse files
committed
Fix build error on Windows
1 parent 9997248 commit 008771c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
'color_names.hpp', 'error.hpp', 'node.hpp',
2929
'context.hpp', 'eval_apply.hpp', 'node_factory.hpp',
3030
'document.hpp', 'functions.hpp', 'prelexer.hpp',
31-
'sass_interface.h'
31+
'sass_interface.h', 'win32/unistd.h'
3232
]
3333

3434
if sys.platform == 'win32':
35-
flags = ['-Wall', '-I"' + os.path.abspath('win32') + '"']
35+
flags = ['-I' + os.path.abspath('win32')]
3636
link_flags = []
3737
macros = {'LIBSASS_PYTHON_VERSION': '\\"' + version + '\\"'}
3838
else:

0 commit comments

Comments
 (0)