From b0e4d2db2f8b8e02a4a62bb3de4f62425d079069 Mon Sep 17 00:00:00 2001 From: Niko Mauno Date: Sun, 30 Mar 2025 10:27:30 +0000 Subject: [PATCH] mozjs: Remove dangling patch file Not referenced since commit 27ab1bbc95b27a72a6a8a750a7fd3e98526e2050 ("mozjs-115: remove recipe"). Signed-off-by: Niko Mauno Signed-off-by: Khem Raj --- ...-autoconf-s-config.sub-to-canonicali.patch | 44 ------------------- 1 file changed, 44 deletions(-) delete mode 100644 meta-oe/recipes-extended/mozjs/mozjs-128/0001-build-do-not-use-autoconf-s-config.sub-to-canonicali.patch diff --git a/meta-oe/recipes-extended/mozjs/mozjs-128/0001-build-do-not-use-autoconf-s-config.sub-to-canonicali.patch b/meta-oe/recipes-extended/mozjs/mozjs-128/0001-build-do-not-use-autoconf-s-config.sub-to-canonicali.patch deleted file mode 100644 index 38496ea56c..0000000000 --- a/meta-oe/recipes-extended/mozjs/mozjs-128/0001-build-do-not-use-autoconf-s-config.sub-to-canonicali.patch +++ /dev/null @@ -1,44 +0,0 @@ -From c860dcbe63b0e393c95bfb0131238f91aaac11d3 Mon Sep 17 00:00:00 2001 -From: Alexander Kanavin -Date: Thu, 7 Oct 2021 12:44:18 +0200 -Subject: [PATCH] build: do not use autoconf's config.sub to 'canonicalize' - names - -The outcome is that processed names no longer match our custom rust -target definitions, and the build fails. - -Upstream-Status: Inappropriate [oe-core specific] -Signed-off-by: Alexander Kanavin - ---- - build/moz.configure/init.configure | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/build/moz.configure/init.configure -+++ b/build/moz.configure/init.configure -@@ -647,24 +647,7 @@ def help_host_target(help, host, target) - - def config_sub(shell, triplet): - config_sub = os.path.join(os.path.dirname(__file__), "..", "autoconf", "config.sub") -- # Config.sub doesn't like the *-windows-msvc/*-windows-gnu triplets, so -- # munge those before and after calling config.sub. -- suffix = None -- munging = { -- "-windows-msvc": "-mingw32", -- "-windows-gnu": "-mingw32", -- } -- for check_suffix, replacement in munging.items(): -- if triplet.endswith(check_suffix): -- suffix = check_suffix -- triplet = triplet[: -len(suffix)] + replacement -- break -- result = check_cmd_output(shell, config_sub, triplet).strip() -- if suffix: -- assert result.endswith(replacement) -- result = result[: -len(replacement)] + suffix -- return result -- -+ return triplet - - @depends("--host", shell) - @checking("for host system type", lambda h: h.alias)