aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-12-23 18:32:49 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-12-23 18:32:49 -0500
commitf0bc32eb252d6f04d7aaa8a7f34e9e00d27d070f (patch)
tree6f818b654cdd5c57f4781779eef3b27f67539778 /Makefile
parent1c13267ae3ca293d634e34074f2c8c5197062a86 (diff)
Fix `cp` behavior for copying symlinks
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 86bf1a1b..bd4bc1dc 100644
--- a/Makefile
+++ b/Makefile
@@ -248,7 +248,7 @@ install-files: build check-utilities
$(SUDO) -u $(OWNER) $(MAKE) install-files; \
exit 0; \
fi; \
- cp -r $(BUILD_DIR)/* $(PREFIX)/
+ cp -R $(BUILD_DIR)/* $(PREFIX)/
install: install-files