summaryrefslogtreecommitdiffstats
path: root/meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/0007-fix-musl-build.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2022-09-14 14:03:15 +0200
committerKhem Raj <raj.khem@gmail.com>2022-09-14 11:25:11 -0700
commit7432c1a2ef9d75b078da31d268ffd016e8dcf583 (patch)
tree1bf0cb221ca4625d855de3df65c0176d49e22133 /meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/0007-fix-musl-build.patch
parent49f76d5b0f13009835bdd7b2234f34d99fa2d597 (diff)
downloadmeta-openembedded-7432c1a2ef9d75b078da31d268ffd016e8dcf583.tar.gz
mozjs-78: remove the recipe
Nothing is depending on it, and mozjs-78 has been EOL for a while. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/0007-fix-musl-build.patch')
-rw-r--r--meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/0007-fix-musl-build.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/0007-fix-musl-build.patch b/meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/0007-fix-musl-build.patch
deleted file mode 100644
index c0834af589..0000000000
--- a/meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/0007-fix-musl-build.patch
+++ /dev/null
@@ -1,15 +0,0 @@
1Upstream: No
2Reason: mozjs60 miscompiles on musl if built with HAVE_THREAD_TLS_KEYWORD:
3https://github.com/void-linux/void-packages/issues/2598
4--- a/js/src/old-configure.in
5+++ b/js/src/old-configure.in
6@@ -1072,6 +1072,9 @@ if test "$ac_cv_thread_keyword" = yes; t
7 *-android*|*-linuxandroid*)
8 :
9 ;;
10+ *-musl*)
11+ :
12+ ;;
13 *)
14 AC_DEFINE(HAVE_THREAD_TLS_KEYWORD)
15 ;;