summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Allsopp <david.allsopp@metastack.com>2023-01-04 16:33:28 +0000
committerDavid Allsopp <david.allsopp@metastack.com>2023-01-04 16:33:28 +0000
commita3cd42bc03ed0fc706bb7364fdb14b29b1925600 (patch)
treef2c66a03d0ff16883bb9ba4fa2796ca072db54b2
parent848e28fc6f3f3c9802b23c00f2d77f568c761667 (diff)
downloadocaml-a3cd42bc03ed0fc706bb7364fdb14b29b1925600.tar.gz
Allow installing in folder with space in name (#11590)
- fix(build): Repair make install (in man/Makefile)
-rw-r--r--Changes8
-rw-r--r--man/Makefile4
2 files changed, 10 insertions, 2 deletions
diff --git a/Changes b/Changes
index 776f6e7a45..438c0f3ec2 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,11 @@
+OCaml 5.0 maintenance version
+-----------------------------
+
+### Build system:
+
+- #11590: Allow installing to a destination path containing spaces.
+ (Élie Brami, review by Sébastien Hinderer and David Allsopp)
+
OCaml 5.0 (16 December 2022)
----------------------------
diff --git a/man/Makefile b/man/Makefile
index 36d3126563..10cc8bbe41 100644
--- a/man/Makefile
+++ b/man/Makefile
@@ -22,5 +22,5 @@ MANPAGES = $(addsuffix .1,\
.PHONY: install
install:
- $(MKDIR) $(INSTALL_PROGRAMS_MAN_DIR)
- $(INSTALL_DATA) $(MANPAGES) $(INSTALL_PROGRAMS_MAN_DIR)
+ $(MKDIR) '$(INSTALL_PROGRAMS_MAN_DIR)'
+ $(INSTALL_DATA) $(MANPAGES) '$(INSTALL_PROGRAMS_MAN_DIR)'