From a6a6ff142de37ca9a4138a3d3f50af159925eb8b Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Wed, 24 Jul 2013 10:13:42 -0400 Subject: [PATCH] Makefile should use local binaries, not global --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d3669fc..6660a8e 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,9 @@ all: build test site build: - jison src/jsonlint.y src/jsonlint.l + ./node_modules/jison/lib/cli.js src/jsonlint.y src/jsonlint.l mv jsonlint.js lib/jsonlint.js - node scripts/bundle.js | uglifyjs > web/jsonlint.js + node scripts/bundle.js | ./node_modules/uglify-js/bin/uglifyjs > web/jsonlint.js site: cp web/jsonlint.js ../jsonlint-pages/jsonlint.js