mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-30 17:03:31 +08:00
libnspr: fix build with ARMv7 toolchains
Fixes the following build failure: http://autobuild.buildroot.org/results/d7323831372050e425a34f5104a46d8cbd6be214/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
cea473d8af
commit
27a0cfaa64
@ -16,6 +16,12 @@ LIBNSPR_CONF_OPT = --host=$(GNU_HOST_NAME)
|
||||
LIBNSPR_CONF_OPT += --$(if $(BR2_ARCH_IS_64),en,dis)able-64bit
|
||||
LIBNSPR_CONF_OPT += --$(if $(BR2_INET_IPV6),en,dis)able-ipv6
|
||||
|
||||
ifeq ($(BR2_cortex_a8)$(BR2_cortex_a9),y)
|
||||
LIBNSPR_CONF_OPT += --enable-thumb2
|
||||
else
|
||||
LIBNSPR_CONF_OPT += --disable-thumb2
|
||||
endif
|
||||
|
||||
define LIBNSPR_INSTALL_STAGING_PC
|
||||
$(INSTALL) -D -m 0644 $(TOPDIR)/package/libnspr/nspr.pc.in \
|
||||
$(STAGING_DIR)/usr/lib/pkgconfig/nspr.pc
|
||||
|
Loading…
Reference in New Issue
Block a user