Skip to content

Commit

Permalink
Fixed typo preventing minify finding the right target ${CONCAT} -> ${…
Browse files Browse the repository at this point in the history
…JS_CONCAT}
  • Loading branch information
eliast committed Sep 23, 2009
1 parent 95f642b commit 99150ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js.mk
Expand Up @@ -18,7 +18,7 @@ optjs:
endif

${JS_CONCAT}: ${DIST_DIR} ${MODE_FILE} ${JS_CAT}
@@echo "Building" ${CONCAT}
@@echo "Building" ${JS_CONCAT}
@@echo "Build modes:" ${MODES}
@@echo "/*! ${COMMENT}: ${MODULES} */" | cat - ${JS_CAT} | ${MODE_GREP} | ${SUB} > ${JS_CONCAT}

2 changes: 1 addition & 1 deletion minify.mk
Expand Up @@ -3,7 +3,7 @@ MIN_DIR ?= ${DIST_DIR}/min

MINIFY = java -jar ${BUILD_DIR}/yuicompressor-2.4.2.jar

MIN_FILES = $(notdir ${CONCAT}) ${OPTIONAL_MODULES}
MIN_FILES = $(notdir ${JS_CONCAT}) ${OPTIONAL_MODULES}
MIN_OUT = $(addprefix ${MIN_DIR}/,$(patsubst %.js,%.min.js,${MIN_FILES}))

minify: ${MIN_OUT}
Expand Down

0 comments on commit 99150ff

Please sign in to comment.