[PATCH v2 22/30] Makefile: Correct the ans1_compiler rule for MSYS2

Simon Glass sjg at chromium.org
Sun Apr 30 03:29:55 CEST 2023


Add the required extension to the Makefile rule.

Signed-off-by: Simon Glass <sjg at chromium.org>
---

Changes in v2:
- Use EXEEXT instead of ELFEXT

 Makefile               | 1 +
 scripts/Makefile.build | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 240562dff00b..a328652f0f23 100644
--- a/Makefile
+++ b/Makefile
@@ -48,6 +48,7 @@ ifeq ($(MSYS_VERSION),0)
 export LIBEXT := so
 else
 export LIBEXT := dll
+export EXEEXT := .exe
 endif
 
 # Avoid funny character set dependencies
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 97dd4a64f6ef..a494e2f105b8 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -309,7 +309,7 @@ quiet_cmd_asn1_compiler = ASN.1   $@
       cmd_asn1_compiler = $(objtree)/tools/asn1_compiler $< \
 				$(subst .h,.c,$@) $(subst .c,.h,$@)
 
-$(obj)/%.asn1.c $(obj)/%.asn1.h: $(src)/%.asn1 $(objtree)/tools/asn1_compiler
+$(obj)/%.asn1.c $(obj)/%.asn1.h: $(src)/%.asn1 $(objtree)/tools/asn1_compiler$(EXEEXT)
 	$(call cmd,asn1_compiler)
 
 # Build the compiled-in targets
-- 
2.40.1.495.gc816e09b53d-goog



More information about the U-Boot mailing list