Skip to content

Commit

Permalink
Fix Makefile to use plain sed agin. Remove unicode trickery. Thanks t…
Browse files Browse the repository at this point in the history
…o danheberden and gnarf for figuring out why it previously faild on Mac OS X.
  • Loading branch information
jitter committed Jan 26, 2011
1 parent 6344821 commit ba43d37
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,7 @@ ${JQ_MIN}: jquery
@@if test ! -z ${JS_ENGINE}; then \
echo "Minifying jQuery" ${JQ_MIN}; \
${COMPILER} ${JQ} > ${JQ_MIN}.tmp; \
echo ";" >> ${JQ_MIN}.tmp; \
sed 's/\*\/(/*\/ʩ(/' ${JQ_MIN}.tmp | tr "ʩ" "\n" > ${JQ_MIN}; \
sed '$ s#^\( \*/\)\(.\+\)#\1\n\2;#' ${JQ_MIN}.tmp > ${JQ_MIN}; \
rm -rf ${JQ_MIN}.tmp; \
else \
echo "You must have NodeJS installed in order to minify jQuery."; \
Expand Down

0 comments on commit ba43d37

Please sign in to comment.