diff options
author | Thiago Macieira <thiago@macieira.org> | 2013-04-13 18:11:57 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-04-13 19:38:09 -0700 |
commit | 14e133321f4ac2cff9eb0b84ba9687e5d42e3e46 (patch) | |
tree | dc1a956cb02b7f940d496f1c7d26ce5c1c5b1377 /Makefile | |
parent | 92397a2bad3d1a2bc261dee67d230e3caa13b8d8 (diff) | |
download | subsurface-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |