package/uftrace: fix build on i386

The --arch value on i386 must be "i386", and not i486, i586 or i686,
so let's have a special case for BR2_i386, and use $(BR2_ARCH) for the
other supported CPU architectures.

Fixes:

  http://autobuild.buildroot.net/results/01a28789bcec9af66137cbce5a8fda2d606de99f/

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Thomas Petazzoni 2021-04-24 18:08:57 +02:00
parent 96142a5426
commit 5e15bebd08

View File

@ -15,6 +15,12 @@ UFTRACE_CONFIGURE_OPTS = \
--without-libncurses \
--without-capstone
ifeq ($(BR2_i386),y)
UFTRACE_ARCH = i386
else
UFTRACE_ARCH = $(BR2_ARCH)
endif
# Only --without-<foo> options are supported.
ifeq ($(BR2_PACKAGE_ELFUTILS),y)
UFTRACE_DEPENDENCIES += elfutils
@ -37,7 +43,7 @@ define UFTRACE_CONFIGURE_CMDS
(cd $(@D); $(TARGET_CONFIGURE_OPTS) \
LDFLAGS="$(UFTRACE_LDFLAGS)" \
./configure \
--arch=$(BR2_ARCH) \
--arch=$(UFTRACE_ARCH) \
--prefix=/usr \
$(UFTRACE_CONFIGURE_OPTS) \
-o $(@D)/.config)