~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-07-02 19:13:30 UTC
  • mfrom: (13361.1.1 fix-jsbuild)
  • Revision ID: launchpad@pqm.canonical.com-20110702191330-rk59ywwiwshd2o38
[r=wgrant][rollback=13361] Fix Makefile's -m jsmin to -m
        lp.scripts.utilities.js.jsmin,
        making production-like launchpad.js non-empty again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
191
191
 
192
192
$(JS_OUT): $(JS_ALL)
193
193
ifeq ($(JS_BUILD), min)
194
 
        cat $^ | $(PY) -m jsmin > $@
 
194
        cat $^ | $(PY) -m lp.scripts.utilities.js.jsmin > $@
195
195
else
196
196
        cat $^ > $@
197
197
endif