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:34:43 +0000
commit74fe398bbe2e53db21a998356b042c232d42a4d8 (patch)
tree8d17e5d11bb3896368ff5782628260eb1c3fb25b
parentb497c284639043e3d7dba81a4a4b379f273a9ba4 (diff)
downloadocaml-4.14.tar.gz
Allow installing in folder with space in name (#11590)4.14
- fix(build): Repair make install (in man/Makefile)
-rw-r--r--Changes5
-rw-r--r--man/Makefile4
2 files changed, 7 insertions, 2 deletions
diff --git a/Changes b/Changes
index 652b46209b..95ca8bba57 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,11 @@
OCaml 4.14 maintenance version
------------------------------
+### Build system:
+
+- #11590: Allow installing to a destination path containing spaces.
+ (Élie Brami, review by Sébastien Hinderer and David Allsopp)
+
### Bug fixes:
OCaml 4.14.1 (20 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)'