From 308371ff9fef85a264fb552cfe36a55bf01b3fd4 Mon Sep 17 00:00:00 2001 From: Michael Nosthoff Date: Mon, 28 Oct 2024 13:44:13 +0100 Subject: [PATCH] package/criu: fix comment condition in e97fc89e7b a dependency on host-gcc >= 7 was added but for the comment the condition was not correctly inverted. Fixes: e97fc89e7b ("package/protobuf-c: bump to version 1.5.0") Signed-off-by: Michael Nosthoff Signed-off-by: Thomas Petazzoni (cherry picked from commit 84ef9bede635726542a72af5c61f84914acfe122) Signed-off-by: Peter Korsgaard --- package/criu/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/criu/Config.in b/package/criu/Config.in index 30b131cd30..fc6897c4d0 100644 --- a/package/criu/Config.in +++ b/package/criu/Config.in @@ -50,4 +50,4 @@ comment "criu needs a glibc or musl toolchain w/ threads, host gcc >= 7, gcc >= || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_18 \ || BR2_TOOLCHAIN_USES_UCLIBC || !BR2_INSTALL_LIBSTDCPP \ || BR2_STATIC_LIBS || !BR2_USE_WCHAR \ - || BR2_HOST_GCC_AT_LEAST_7 + || !BR2_HOST_GCC_AT_LEAST_7