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>
--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
(cd $(@D); $(TARGET_CONFIGURE_OPTS) \
LDFLAGS="$(UFTRACE_LDFLAGS)" \
./configure \
- --arch=$(BR2_ARCH) \
+ --arch=$(UFTRACE_ARCH) \
--prefix=/usr \
$(UFTRACE_CONFIGURE_OPTS) \
-o $(@D)/.config)