commit f174978693025a71ef7b99e416b75eb3fad3eeda parent c7418df097ffe4402f77c27018b8890df84227d2 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Tue, 16 Sep 2025 21:45:21 +0200 Correct the installed Makefile when invoking sty tools The Makefile assumes that several tools are shell scripts, whereas we can only assume that they are executables. Diffstat:
| M | templates/Makefile | | | 12 | ++++++------ |
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/templates/Makefile b/templates/Makefile @@ -25,13 +25,13 @@ default: build build clean lint install: hooks index @$(MAKE) -f.hooks -f.index -fMakefile $@__ \ - HTML=" $$($(SHELL) sty-list html | tr '\n' ' ')" \ - SHTML="$$($(SHELL) sty-list shtml | tr '\n' ' ')" \ - HOOK=" $$($(SHELL) sty-list hook | tr '\n' ' ')" \ - SH=" $$($(SHELL) sty-list shell | tr '\n' ' ')" + HTML=" $$(sty-list html | tr '\n' ' ')" \ + SHTML="$$(sty-list shtml | tr '\n' ' ')" \ + HOOK=" $$(sty-list hook | tr '\n' ' ')" \ + SH=" $$(sty-list shell | tr '\n' ' ')" hooks index: - $(SHELL) sty-$@ > .$@ + sty-$@ > .$@ build__: $(HTML) $(HOOK:.sh=.hook) @@ -42,7 +42,7 @@ clean__: install__: $(HTML) $(SIG) @rsync -avzrR --delete-after --progress \ - meso.css $(HTML) $$($(SHELL) sty-list subdir) $(RESOURCES) \ + meso.css $(HTML) $$(sty-list subdir) $(RESOURCES) \ $(PREFIX) ################################################################################