commit 8547851c74da1d087e6b29b31abae63f9deebea9
parent 1b1e6a2474c2f5b469d98346275da8e91e8d19c9
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 29 Aug 2025 09:15:18 +0200
Update to the installation command
Remove the "--mkpath" option from rsync, which may not be available in
older versions. Furthermore, this option was unnecessary, and the
--relative (-R) option already creates the correct file hierarchy.
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -49,7 +49,7 @@ clean__:
distclean__: clean__
install__: $(HTML) $(SIG)
- @rsync --mkpath -avzrR --delete-after --progress \
+ @rsync -avzrR --delete-after --progress \
meso.css $(HTML) $$($(SHELL) ./scripts/list.sh subdir) $(RESOURCES) \
$(PREFIX)
diff --git a/scripts/hooks.sh b/scripts/hooks.sh
@@ -120,7 +120,7 @@ printf '%s\n' "${hook}" | while read -r i; do
# Set the target that installs website resources generated by the hook
printf '%s-install: %s\n' "${prefix}" "${tgt}"
- printf " @rsync --mkpath -avzrR --files-from=%s ./ \$(PREFIX)\n" \
+ printf " @rsync -avzrR --files-from=%s ./ \$(PREFIX)\n" \
"${tgt}"
printf 'install__: %s-install\n' "${prefix}"