~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-03 05:05:39 UTC
  • mfrom: (14514.3.5 new-python-apt)
  • Revision ID: launchpad@pqm.canonical.com-20120103050539-y6ipuo5e9illcrsr
[r=benji][bug=551510] Port to new python-apt API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
endef
33
33
 
34
34
JS_YUI := $(shell utilities/yui-deps.py $(JS_BUILD:raw=))
35
 
JS_OTHER := $(wildcard lib/canonical/launchpad/javascript/*/*.js)
36
 
JS_LP := $(shell find $(JS_LP_PATHS) -name '*.js' ! -name '.*.js')
37
 
JS_ALL := $(JS_YUI) $(JS_OTHER) $(JS_LP)
 
35
JS_LP := $(shell find -L $(JS_LP_PATHS) -name '*.js' ! -name '.*.js')
 
36
JS_ALL := $(JS_YUI) $(JS_LP)
38
37
JS_OUT := $(LP_BUILT_JS_ROOT)/launchpad.js
39
38
 
40
39
MINS_TO_SHUTDOWN=15
93
92
 
94
93
# Run by PQM.
95
94
check_config: build
96
 
        bin/test -m canonical.config.tests -vvt test_config
 
95
        bin/test -m lp.services.config.tests -vvt test_config
97
96
 
98
97
# Clean before running the test suite, since the build might fail depending
99
98
# what source changes happened. (e.g. apidoc depends on interfaces)