From 1a65eb2a09db9a162f8ec5eb11de40c59e9b350a Mon Sep 17 00:00:00 2001 From: John Resig Date: Tue, 17 Feb 2009 21:56:42 +0000 Subject: [PATCH] Updated the JAR Makefile command to support UTF-8. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4d17f00..246a63f 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ JQ_PACK = ${DIST_DIR}/jquery.pack.js JQ_VER = `cat version.txt` VER = sed s/@VERSION/${JQ_VER}/ -JAR = java -jar ${BUILD_DIR}/js.jar +JAR = java -Dfile.encoding=utf-8 -jar ${BUILD_DIR}/js.jar MINJAR = java -jar ${BUILD_DIR}/yuicompressor-2.4.2.jar DATE=`svn info . | grep Date: | sed 's/.*: //g'` -- 1.7.10.4