From: Thomas Petazzoni Date: Sun, 6 Jan 2013 05:22:48 +0000 (+0000) Subject: argp-standlone: build position independent code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eb6cf3003366864aa29cc56eab88c26c3d8baedf;p=buildroot.git argp-standlone: build position independent code Even though argp-standalone is built as a static library, it might get linked in a shared library, so we must built it as position-independent code. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/package/argp-standalone/argp-standalone.mk b/package/argp-standalone/argp-standalone.mk index 47c09b29bd..ba7f7576c0 100644 --- a/package/argp-standalone/argp-standalone.mk +++ b/package/argp-standalone/argp-standalone.mk @@ -8,6 +8,9 @@ ARGP_STANDALONE_VERSION = 1.3 ARGP_STANDALONE_SITE = http://www.lysator.liu.se/~nisse/archive ARGP_STANDALONE_INSTALL_STAGING = YES +ARGP_STANDALONE_CONF_ENV = \ + CFLAGS="$(TARGET_CFLAGS) -fPIC" + define ARGP_STANDALONE_INSTALL_STAGING_CMDS $(INSTALL) -D $(@D)/libargp.a $(STAGING_DIR)/usr/lib/libargp.a $(INSTALL) -D $(@D)/argp.h $(STAGING_DIR)/usr/include/argp.h