From 9ae837a167f68136cb8df70f6c40b0e54c07bc01 Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Mon, 17 Jan 2011 19:04:32 -0600 Subject: [PATCH] Update Makefile to use either nodejs or node, whichever exists (Debian uses nodejs). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7540a27..56b273d 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ BUILD_DIR = build PREFIX = . DIST_DIR = ${PREFIX}/dist -JS_ENGINE ?= node +JS_ENGINE ?= `which nodejs node` COMPILER = ${JS_ENGINE} ${BUILD_DIR}/uglify.js --unsafe BASE_FILES = ${SRC_DIR}/core.js\ -- 1.7.10.4