From f84c53e4acb4c8a9e4dadd4ce165ca3a126114b1 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Wed, 9 Jan 2019 22:08:01 -0500 Subject: [PATCH] makefile_engine: Fix installing to a path with spaces in it. Fixes #11419. --- data/develop/makefile-engine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/develop/makefile-engine b/data/develop/makefile-engine index 7013a9a87d..21fccf6f18 100644 --- a/data/develop/makefile-engine +++ b/data/develop/makefile-engine @@ -366,7 +366,7 @@ ifeq ($(INSTALL_DIR), ) @echo "No install directory specified for \"$(NAME)\" (INSTALL_DIR is empty)" >&2 else mkdir -p "$(INSTALL_DIR)" - cp $(TARGET) $(INSTALL_DIR)/$(NAME) + cp $(TARGET) "$(INSTALL_DIR)/$(NAME)" endif # Set the catalog installation directory if it isn't already.