Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libsemanage: fix build error when linking with ustr
@ 2015-12-03 20:25 Sergio Prado
  2015-12-03 21:07 ` Thomas Petazzoni
  2015-12-08 20:59 ` Yann E. MORIN
  0 siblings, 2 replies; 4+ messages in thread
From: Sergio Prado @ 2015-12-03 20:25 UTC (permalink / raw)
  To: buildroot

Disable ustr inline functions to avoid multiple definition of symbols error
when linking with ustr.

Fixes:
http://autobuild.buildroot.net/results/e7012c7a734dbdd1c697cf63b6df6e834e8eafc7
http://autobuild.buildroot.net/results/0783a63e4694ffa8463ef5533b635c7e7c43dd42
http://autobuild.buildroot.net/results/40726abf3419a727c5762ef2791dbf53fa1736c0
http://autobuild.buildroot.net/results/a6a0c827c393a5fb41653d71d1ee50df283a32fb
...

Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com>
---
 package/libsemanage/libsemanage.mk | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/package/libsemanage/libsemanage.mk b/package/libsemanage/libsemanage.mk
index 197c14e4229a..ea9f4c9f67de 100644
--- a/package/libsemanage/libsemanage.mk
+++ b/package/libsemanage/libsemanage.mk
@@ -13,10 +13,15 @@ LIBSEMANAGE_INSTALL_STAGING = YES
 
 LIBSEMANAGE_MAKE_OPTS = $(TARGET_CONFIGURE_OPTS)
 
+# disable ustr inline functions to avoid multiple definition of symbols
+# error when linking
+LIBSEMANAGE_CFLAGS = $(TARGET_CFLAGS) -DUSTR_CONF_COMPILE_USE_INLINE=0
+
 define LIBSEMANAGE_BUILD_CMDS
 	# DESTDIR is needed during the compile to compute library and
 	# header paths.
-	$(MAKE) -C $(@D) $(LIBSEMANAGE_MAKE_OPTS) DESTDIR=$(STAGING_DIR) all
+	$(MAKE) -C $(@D) $(LIBSEMANAGE_MAKE_OPTS) CFLAGS="$(LIBSEMANAGE_CFLAGS)" \
+		DESTDIR=$(STAGING_DIR) all
 endef
 
 define LIBSEMANAGE_INSTALL_STAGING_CMDS
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-12-09  0:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-03 20:25 [Buildroot] [PATCH] libsemanage: fix build error when linking with ustr Sergio Prado
2015-12-03 21:07 ` Thomas Petazzoni
2015-12-08 20:59 ` Yann E. MORIN
2015-12-09  0:59   ` Sergio Prado

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox