From 9af4bb6552b4d7e39af612ededad3c4c625e87d7 Mon Sep 17 00:00:00 2001 From: Hyungoo Kang Date: Sat, 5 Jan 2013 03:01:22 +0900 Subject: [PATCH] Fix dahlia/libsass-python#4 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b3740f8b..7ac20ffe 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ version = '0.2.4' -libsass_sources = [ +libsass_sources = [ 'constants.cpp', 'context.cpp', 'functions.cpp', 'document.cpp', 'document_parser.cpp', 'eval_apply.cpp', 'node.cpp', 'node_factory.cpp', 'node_emitters.cpp', 'prelexer.cpp', @@ -55,7 +55,7 @@ def spawn(self, cmd): link_flags = [] macros = {'LIBSASS_PYTHON_VERSION': '\\"' + version + '\\"'} else: - flags = ['-fPIC', '-Wall', '-Wno-parentheses', '-Wno-tautological-compare'] + flags = ['-fPIC', '-Wall', '-Wno-parentheses'] link_flags = ['-fPIC', '-lstdc++'] macros = {'LIBSASS_PYTHON_VERSION': '"' + version + '"'}