commit 0fda376201ae512289ed5314e2be08d73540dcf0 parent 4c95284800f5c1ebdbcf46354a39f44867c370a9 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Mon, 29 Sep 2025 21:37:49 +0200 Correct the 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 | Makefile | | | 12 | ++++++------ |
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/Makefile b/Makefile @@ -25,13 +25,13 @@ default: build build clean distclean 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) ################################################################################