From a85ef1ad1c6ef2f7ad0b137f4580d117f36c2a26 Mon Sep 17 00:00:00 2001 From: Simon Rose Date: Tue, 29 Apr 2025 08:43:40 +0200 Subject: [PATCH] Fix failing windows builds Certain windows build environments (see https://dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=1234387&view=results for an example) fail unless the echo command is properly quoted. This seems to be due to how Make handles various commands on non-posix systems; without the quotes it directly tries to run ``` echo foo bar ``` inside cmd.exe, which fails as echo is not a valid command in that context. Co-authored-by: Anders Harrisson --- configure/RULES_MODULES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure/RULES_MODULES b/configure/RULES_MODULES index b8e18aecb..7ae8ffcbc 100644 --- a/configure/RULES_MODULES +++ b/configure/RULES_MODULES @@ -41,7 +41,7 @@ RELEASE.host: $(RELEASE_LOCAL) $(RELEASE_LOCAL): Makefile $(CONFIG)/CONFIG_SITE \ $(wildcard $(CONFIG)/CONFIG_SITE.local) - $(ECHO) Creating $@ with + $(ECHO) "Creating $@ with" $(ECHO) " $(PARENT_MODULE) = $(INSTALL_ABSOLUTE)" @echo $(PARENT_MODULE) = $(INSTALL_ABSOLUTE)> $@