libpcap: fix sparc64 build, -fPIC required

Should fix following autobuilder issues:
http://autobuild.buildroot.net/results/e79353496aa91848c76f15c561efdd84476c20ac/
http://autobuild.buildroot.net/results/a859ecb153838837e9a73b47ed7e1105d6be55ac/
http://autobuild.buildroot.net/results/f2ce1899a1144bec23fb25f4ce36dc78d768f8a8/

[Thomas: s/needs/need/ as suggested by Baruch.]

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Waldemar Brodkorb 2015-11-03 18:17:35 +01:00 committed by Thomas Petazzoni
parent 0708c41ec1
commit ae675912b8

View file

@ -55,8 +55,8 @@ else
LIBPCAP_CONF_OPTS += --without-libnl
endif
# microblaze needs -fPIC instead of -fpic
ifeq ($(BR2_microblaze),y)
# microblaze/sparc64 need -fPIC instead of -fpic
ifeq ($(BR2_microblaze)$(BR2_sparc64),y)
LIBPCAP_CFLAGS += -fPIC
endif