From 3600518449ac41b805a3fae9cd8b2cd270d3d152 Mon Sep 17 00:00:00 2001 From: wes Date: Fri, 24 Jun 2016 01:20:25 -0400 Subject: [PATCH] change variable name for config in Makefile because it conflicts with the variable name used for configuring the location of the app files --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 546d033..2ed1170 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ default: cp -r ./src/{archive.py,openlibrary.py,predictions.py,search.py,website.py,textbookExceptions.py} ./build/; cp ./src/appconfig ./build/; sed -i s,NAME_HERE,"$(SRV_NAME)",g ./build/appconfig; - sed -i s,ROOT_HERE,"$(SRV_ROOT)",g ./build/appconfig; + sed -i s,ROOT_HERE,"$(SRV_PREFIX)",g ./build/appconfig; clean: rm -fr ./build;