summarylogtreecommitdiffstats
path: root/0000-use-system-libsass.patch
blob: 74b3774f800fe905330f2888051bbd43184167c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
diff --git a/setup.py b/setup.py
index f92779a..fcc956a 100644
--- a/setup.py
+++ b/setup.py
@@ -59,9 +59,9 @@ for directory in (
     for pth, _, filenames in os.walk(directory):
         for filename in filenames:
             filename = os.path.join(pth, filename)
-            if filename.endswith(('.c', '.cpp')):
-                sources.append(filename)
-            elif filename.endswith('.h'):
+            #if filename.endswith(('.c', '.cpp')):
+            #    sources.append(filename)
+            if filename.endswith('.h'):
                 headers.append(filename)
 
 if sys.platform == 'win32':
@@ -139,7 +139,7 @@ else:
     if platform.system() == 'FreeBSD':
         link_flags = ['-fPIC', '-lc++']
     else:
-        link_flags = ['-fPIC', '-lstdc++']
+        link_flags = ['-fPIC', '-lstdc++', '-lsass']
 
 sass_extension = Extension(
     '_sass',