From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Hilliard Date: Tue, 7 Jul 2020 14:04:31 -0600 Subject: [Buildroot] [PATCH v2 1/1] package/python-greenlet: fix build for i386 and x86_64 archs Message-ID: <20200707200431.181733-1-james.hilliard1@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net BR2_x86 doesn't exist in buildroot which should be BR2_i386. BR2_x86_64 was missed in 30f1decec2ca190deea072f4d490a8de830ac9a3. Signed-off-by: James Hilliard --- Changes v1 -> v2: - also fix BR2_i386 --- package/python-greenlet/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/python-greenlet/Config.in b/package/python-greenlet/Config.in index 44ab96b488..c73eeb7b15 100644 --- a/package/python-greenlet/Config.in +++ b/package/python-greenlet/Config.in @@ -8,7 +8,7 @@ config BR2_PACKAGE_PYTHON_GREENLET_ARCH_SUPPORTS default y if BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le default y if BR2_riscv default y if BR2_sparc || BR2_sparc64 - default y if BR2_x86 + default y if BR2_i386 || BR2_x86_64 config BR2_PACKAGE_PYTHON_GREENLET bool "python-greenlet" -- 2.25.1