Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/fill
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@sugarlabs.org>2011-02-08 12:58:41 (GMT)
committer Gonzalo Odiard <godiard@sugarlabs.org>2011-02-08 12:58:41 (GMT)
commit63d2be94ffa973825ebc8cfcee1a85aed5ca0b6e (patch)
treed3a444774173df82bf9da2ac544f8d082849fd05 /fill
parentfa55888e3d4ff13e309eb381f393db31a61203e8 (diff)
Change Makefile to exclude -pthread option in compilation
Diffstat (limited to 'fill')
-rw-r--r--fill/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/fill/Makefile b/fill/Makefile
index e437f99..448c965 100644
--- a/fill/Makefile
+++ b/fill/Makefile
@@ -34,11 +34,11 @@
#Rafael Barbolo Lopes (barbolo@gmail.com)
#Alexandre A. Gonçalves Martinazzo (alexandremartinazzo@gmail.com)
-CFLAGS = $(shell pkg-config --cflags gtk+-2.0 pygtk-2.0) \
+CFLAGS = $(shell pkg-config --cflags gtk+-2.0 pygtk-2.0 | sed 's/-pthread//') \
$(shell python-config --cflags) \
-fPIC
-LDFLAGS = $(shell pkg-config --libs gtk+-2.0 pygtk-2.0) \
+LDFLAGS = $(shell pkg-config --libs gtk+-2.0 pygtk-2.0 | sed 's/-pthread//') \
$(shell python-config --libs)
ARCH = $(shell arch | grep 64 >/dev/null && echo linux64 || echo linux32)