X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 4B255DC64F2 for ; Thu, 10 Sep 2015 01:36:58 +0000 (UTC) Received: from smtp150.ord.emailsrvr.com (smtp150.ord.emailsrvr.com [173.203.6.150]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 24388DC5DD6 for ; Thu, 10 Sep 2015 01:36:57 +0000 (UTC) Received: from smtp23.relay.ord1a.emailsrvr.com (localhost.localdomain [127.0.0.1]) by smtp23.relay.ord1a.emailsrvr.com (SMTP Server) with ESMTP id 4772610017A; Wed, 9 Sep 2015 21:36:57 -0400 (EDT) Received: by smtp23.relay.ord1a.emailsrvr.com (Authenticated sender: jonathan-AT-curran.in) with ESMTPSA id C5B5A100140; Wed, 9 Sep 2015 21:36:56 -0400 (EDT) X-Sender-Id: jonathan@curran.in Received: from alpine.my.domain (cpe-97-99-28-109.tx.res.rr.com [97.99.28.109]) (using TLSv1.2 with cipher AES128-SHA256) by 0.0.0.0:25 (trex/5.4.2); Thu, 10 Sep 2015 01:36:57 GMT From: Jonathan Curran To: alpine-aports@lists.alpinelinux.org Cc: Jonathan Curran Subject: [alpine-aports] [PATCH] testing/fts: add -fPIC to CFLAGS Date: Wed, 9 Sep 2015 02:13:46 +0000 Message-Id: <1441764826-7087-1-git-send-email-jonathan@curran.in> X-Mailer: git-send-email 2.4.1 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Simply adding -fPIC to CFLAGS when building. --- testing/fts/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/fts/APKBUILD b/testing/fts/APKBUILD index 8677a6b..eea918c 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 -- 2.4.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---