From 8165e41ceaf974ff4d1534169c04675c9885536e Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Mon, 4 Nov 2013 14:17:53 +0000 Subject: [PATCH] use make variable, not hard coded pp2 path --- tools/htdocs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/htdocs/Makefile b/tools/htdocs/Makefile index 84043d2..1c63a7c 100644 --- a/tools/htdocs/Makefile +++ b/tools/htdocs/Makefile @@ -44,7 +44,7 @@ mkws-js ${MKWS_JS}: ${PZ2API_JS} mkws.js ( echo "/* created at: $$(date)"; \ echo " mkws.js GIT id: $$(git log mkws.js | head -n 1 | perl -npe 's,\S+\s+,,') */"; \ curl -sSf ${JQUERY_URL} | perl -npe 's,sourceMappingURL=jquery.*map,,'; \ - cat ../../../libjs-pz2/pz2api.1.js mkws.js ) > ${MKWS_JS}.new + cat ${PZ2API_JS} mkws.js ) > ${MKWS_JS}.new mv -f ${MKWS_JS}.new ${MKWS_JS} distclean: clean -- 1.7.10.4