diff options
author | Jonathan Curran <jonathan@curran.in> | 2015-09-09 02:13:46 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-09-15 09:41:54 +0200 |
commit | ffec20d7895e626bae5200808b1e87ea7e4ec1cc (patch) | |
tree | f110146a529f67a11991ee8d3e2895661cc8175c | |
parent | ee5e8218e140463795a5e05ec772a88d1a618c6e (diff) | |
download | aports-ffec20d7895e626bae5200808b1e87ea7e4ec1cc.tar.bz2 aports-ffec20d7895e626bae5200808b1e87ea7e4ec1cc.tar.xz |
testing/fts: add -fPIC to CFLAGS
Simply adding -fPIC to CFLAGS when building.
-rw-r--r-- | testing/fts/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/fts/APKBUILD b/testing/fts/APKBUILD index 636bc3afbc..ad95ee5108 100644 --- a/testing/fts/APKBUILD +++ b/testing/fts/APKBUILD @@ -29,7 +29,7 @@ prepare() { build() { cd "$_builddir" ./bootstrap.sh - ./configure --build=$CBUILD \ + CFLAGS=-fPIC ./configure --build=$CBUILD \ --host=$CHOST \ --prefix=/usr || return 1 make || return 1 |