From: jeresig Date: Mon, 11 Oct 2010 03:28:30 +0000 (-0400) Subject: Fix broken min file header generation. X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=2c04035cd1d7cb1e73c6e9b2d63fc77e5165b8fc Fix broken min file header generation. --- diff --git a/Makefile b/Makefile index ce92f4f..a236ed0 100644 --- a/Makefile +++ b/Makefile @@ -97,8 +97,10 @@ min: ${JQ_MIN} ${JQ_MIN}: ${JQ} @@echo "Building" ${JQ_MIN} - @@head -$(shell grep -m 1 -n '*/' ${JQ} | cut -f1 -d:) ${JQ} > ${JQ_MIN} - @@${MINJAR} --js ${JQ} --warning_level QUIET --js_output_file ${JQ_MIN} + @@head -15 ${JQ} > ${JQ_MIN} + @@${MINJAR} --js ${JQ} --warning_level QUIET --js_output_file ${JQ_MIN}.tmp + @@cat ${JQ_MIN}.tmp >> ${JQ_MIN} + @@rm -f ${JQ_MIN}.tmp clean: @@echo "Removing Distribution directory:" ${DIST_DIR}