From 94c9ec4cdd025bc688a0ace5f8406ee109e73b9c Mon Sep 17 00:00:00 2001 From: LevWi Date: Mon, 6 Feb 2023 16:46:34 +0300 Subject: [PATCH] ffmpeg: fix target_os deduction for embedded platform --- recipes/ffmpeg/all/conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/ffmpeg/all/conanfile.py b/recipes/ffmpeg/all/conanfile.py index 2c5c98eb34d40..406c6e3386715 100644 --- a/recipes/ffmpeg/all/conanfile.py +++ b/recipes/ffmpeg/all/conanfile.py @@ -348,7 +348,7 @@ def _target_os(self): str(self.settings.compiler) if self.settings.os == "Windows" else None, ) target_os = triplet.split("-")[2] - if target_os == "gnueabihf": + if target_os in ["gnueabihf", "gnueabi"]: target_os = "gnu" # could also be "linux" if target_os.startswith("android"): target_os = "android"