Makefile Engine: Add quotes around INSTALL_DIR.

This is the correct solution to #11419; I missed in my original commit
that $(NAME) will already be escaped, and adding quotes double-escaped
it erroneously.
This commit is contained in:
Augustin Cavalier 2019-01-23 23:39:46 -05:00
parent ad7cab8751
commit 478aa96dd7

View File

@ -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.