[Buildroot] [git commit] package/jitterentropy-library: fix build failure due to missing -fPIC

Thomas Petazzoni thomas.petazzoni at bootlin.com
Fri Oct 25 14:38:59 UTC 2019


commit: https://git.buildroot.net/buildroot/commit/?id=41f06fa0bbe0b0bfeb72e9c701f77e607505cdd9
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

jitterentropy-library needs -fPIC flag to build so add it when building.

Fixes:
http://autobuild.buildroot.net/results/505/5059207ec9ab0b502717626cc84956dafd0c3c32/

[Original: http://patchwork.ozlabs.org/patch/1182068/]
Cc: Giulio Benetti <giulio.benetti at benettiengineering.com>
Signed-off-by: Matthew Weber <matthew.weber at rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
---
 package/jitterentropy-library/jitterentropy-library.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/jitterentropy-library/jitterentropy-library.mk b/package/jitterentropy-library/jitterentropy-library.mk
index 2ea24f83ac..70af24e5db 100644
--- a/package/jitterentropy-library/jitterentropy-library.mk
+++ b/package/jitterentropy-library/jitterentropy-library.mk
@@ -23,7 +23,7 @@ endif
 
 
 define JITTERENTROPY_LIBRARY_BUILD_CMDS
-	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
+	$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
 		$(JITTERENTROPY_LIBRARY_BUILD_TARGETS)
 endef
 


More information about the buildroot mailing list