From 421b9ba29fe4c8869ca4dc637880802e41d5cad2 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Wed, 6 Mar 2013 18:18:06 -0800 Subject: [PATCH] Use local uglify binary --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f286a939b..f57355762 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ # See the README for installation instructions. NODE_PATH ?= ./node_modules -# JS_COMPILER = $(NODE_PATH)/uglify-js/bin/uglifyjs -JS_BEAUTIFIER = uglifyjs -b -i 2 -nm -ns -JS_COMPILER = uglifyjs +UGLIFY = $(NODE_PATH)/uglify-js/bin/uglifyjs +JS_BEAUTIFIER = $(UGLIFY) -b -i 2 -nm -ns +JS_COMPILER = $(UGLIFY) LOCALE ?= en_US all: \