makefile_engine: Fix installing to a path with spaces in it.
Fixes #11419.
This commit is contained in:
@@ -366,7 +366,7 @@ ifeq ($(INSTALL_DIR), )
|
|||||||
@echo "No install directory specified for \"$(NAME)\" (INSTALL_DIR is empty)" >&2
|
@echo "No install directory specified for \"$(NAME)\" (INSTALL_DIR is empty)" >&2
|
||||||
else
|
else
|
||||||
mkdir -p "$(INSTALL_DIR)"
|
mkdir -p "$(INSTALL_DIR)"
|
||||||
cp $(TARGET) $(INSTALL_DIR)/$(NAME)
|
cp $(TARGET) "$(INSTALL_DIR)/$(NAME)"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Set the catalog installation directory if it isn't already.
|
# Set the catalog installation directory if it isn't already.
|
||||||
|
|||||||
Reference in New Issue
Block a user