File 0176-compiler-Fix-erroneous-makefile-dependency.patch of Package erlang
From ade5cc0140fb485f46860c1283a7c3d509131db1 Mon Sep 17 00:00:00 2001
From: Frej Drejhammar <frej.drejhammar@gmail.com>
Date: Fri, 19 Jul 2024 07:06:15 +0200
Subject: [PATCH] compiler: Fix erroneous makefile dependency
Since the module implementing the alias analysis pass was first
introduced, its dependencies have been wrongly specified in the
makefile.
---
lib/compiler/src/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/compiler/src/Makefile b/lib/compiler/src/Makefile
index 50f4c2dc16..0ceba13ebe 100644
--- a/lib/compiler/src/Makefile
+++ b/lib/compiler/src/Makefile
@@ -216,7 +216,7 @@ $(EBIN)/beam_jump.beam: beam_asm.hrl
$(EBIN)/beam_listing.beam: core_parse.hrl beam_ssa.hrl \
beam_asm.hrl beam_types.hrl
$(EBIN)/beam_ssa.beam: beam_ssa.hrl
-$(EBIN)/beam_ssa_alias_opt.beam: beam_ssa_opt.hrl beam_types.hrl
+$(EBIN)/beam_ssa_alias.beam: beam_ssa_opt.hrl beam_types.hrl
$(EBIN)/beam_ssa_bsm.beam: beam_ssa.hrl
$(EBIN)/beam_ssa_bool.beam: beam_ssa.hrl
$(EBIN)/beam_ssa_check.beam: beam_ssa.hrl beam_types.hrl
--
2.43.0