summaryrefslogtreecommitdiff
path: root/dev-lang/elixir/files/elixir-1.14.1-make44-parallel-build.patch
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mm1ke@gentoo.org>2025-10-29 17:30:57 +0100
committerMichael Mair-Keimberger <mm1ke@gentoo.org>2025-10-29 17:30:57 +0100
commitc969531cc448814ad8a153f0e5361b7fa7719fc0 (patch)
tree0e07dc834480d5c86f1f4edb894460916c2e995d /dev-lang/elixir/files/elixir-1.14.1-make44-parallel-build.patch
parent9c2fad0240ea4407bc7cd4d0159ff3f580b6b841 (diff)
downloadgentoo-c969531cc448814ad8a153f0e5361b7fa7719fc0.tar.gz
gentoo-c969531cc448814ad8a153f0e5361b7fa7719fc0.tar.bz2
gentoo-c969531cc448814ad8a153f0e5361b7fa7719fc0.zip
dev-lang/elixir: remove unused patches
Signed-off-by: Michael Mair-Keimberger <mm1ke@gentoo.org>
Diffstat (limited to 'dev-lang/elixir/files/elixir-1.14.1-make44-parallel-build.patch')
-rw-r--r--dev-lang/elixir/files/elixir-1.14.1-make44-parallel-build.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/dev-lang/elixir/files/elixir-1.14.1-make44-parallel-build.patch b/dev-lang/elixir/files/elixir-1.14.1-make44-parallel-build.patch
deleted file mode 100644
index 81d40f751da8..000000000000
--- a/dev-lang/elixir/files/elixir-1.14.1-make44-parallel-build.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From c668ce22b0dd72261621f19f124490eb5425eacd Mon Sep 17 00:00:00 2001
-From: Matthew Smith <matthew@gentoo.org>
-Date: Tue, 15 Nov 2022 21:38:50 +0000
-Subject: [PATCH] Disable parallel build in Make 4.4
-
-In versions of GNU Make prior to 4.4, ".NOTPARALLEL: compile" made the whole
-build run serially. In 4.4 and later, ".NOTPARALLEL: compile" makes only
-the compile target run serially.
-
-This breaks the build and can lead to e.g. EEx being built before Mix.
----
- Makefile | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Makefile b/Makefile
-index f6ba18d90e..8bb5bcdc65 100644
---- a/Makefile
-+++ b/Makefile
-@@ -24,7 +24,7 @@ SOURCE_DATE_EPOCH_PATH = lib/elixir/tmp/ebin_reproducible
- SOURCE_DATE_EPOCH_FILE = $(SOURCE_DATE_EPOCH_PATH)/SOURCE_DATE_EPOCH
-
- .PHONY: install compile erlang elixir unicode app build_plt clean_plt dialyze test check_reproducible clean clean_residual_files format install_man clean_man docs Docs.zip Precompiled.zip zips
--.NOTPARALLEL: compile
-+.NOTPARALLEL:
-
- #==> Functions
-