From 70218378aa3f831e6d53ad40ddb28bf7bbe4dc51 Mon Sep 17 00:00:00 2001 From: wes Date: Fri, 24 Jun 2016 01:21:28 -0400 Subject: [PATCH] quote variables in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2ed1170..887d693 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,6 @@ install: $(MAKE); rm -rf /srv/http/build/; cp -rT ./build /srv/http/build/; - cp -rT ./build/scripts/ $(SRV_ROOT)/scripts/; - cp -rT ./build/styles/ $(SRV_ROOT)/styles/; + cp -rT ./build/scripts/ "$(SRV_ROOT)/scripts/"; + cp -rT ./build/styles/ "$(SRV_ROOT)/styles/"; cp search.ini /srv/http/build/;