Skip to content

Commit

Permalink
Fix jQuery gzipping in the Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
chromakode authored and bsimpson63 committed Jul 18, 2012
1 parent 02db4d6 commit 05afaf6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion r2/Makefile
Expand Up @@ -212,7 +212,8 @@ clean_names:
rm -f $(MANGLE_BUILDSTAMP) $(NAMES_FILES) $(MANGLEABLE_FILES) $(MANGLED_FILES) $(JS_MODULE_BUILDSTAMPS)

#### gzip!
GZIPPABLE := $(filter %.css %.js,$(MANGLED_FILES) $(STATIC_BUILD_DIR)/js/lib/jquery.js)
JQUERY_JS := $(wildcard $(STATIC_BUILD_DIR)/js/lib/jquery-*.min.js)
GZIPPABLE := $(filter %.css %.js,$(MANGLED_FILES) $(JQUERY_JS))
GZIPPED := $(addsuffix .gzip,$(GZIPPABLE))

.PHONY: clean_gzip
Expand Down

0 comments on commit 05afaf6

Please sign in to comment.