aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Thiago Macieira <thiago@macieira.org>2013-04-13 18:11:57 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-04-13 19:38:09 -0700
commit14e133321f4ac2cff9eb0b84ba9687e5d42e3e46 (patch)
treedc1a956cb02b7f940d496f1c7d26ce5c1c5b1377 /Makefile
parent92397a2bad3d1a2bc261dee67d230e3caa13b8d8 (diff)
downloadsubsurface-14e133321f4ac2cff9eb0b84ba9687e5d42e3e46.tar.gz
Remove the mandatory -fPIC from CXXFLAGS
This isn't necessary. There's code below adding -fPIE when necessary only. Signed-off-by: Thiago Macieira <thiago@macieira.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 81e3648c9..8bbd26fb7 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ VERSION=3.0.2
CC=gcc
CFLAGS=-Wall -Wno-pointer-sign -g $(CLCFLAGS) -DGSEAL_ENABLE
CXX=g++
-CXXFLAGS=-Wall -g $(CLCFLAGS) -fPIC -DQT_NO_KEYWORDS
+CXXFLAGS=-Wall -g $(CLCFLAGS) -DQT_NO_KEYWORDS
INSTALL=install
PKGCONFIG=pkg-config
XML2CONFIG=xml2-config