~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Martin Pool
  • Date: 2011-04-18 00:44:08 UTC
  • mfrom: (5609.33.4 2.3)
  • mto: This revision was merged to the branch mainline in revision 5796.
  • Revision ID: mbp@sourcefrog.net-20110418004408-ecxktkw0kmc6l4ha
Use -Wignore::ImportWarning rather than catching it, to restore py2.4 compatibility

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
        set -e
43
43
        # Generate a stream for PQM to watch.
44
44
        -$(RM) -f selftest.log
45
 
        $(PYTHON) -Werror -O ./bzr selftest --subunit $(tests) | tee selftest.log
 
45
        $(PYTHON) -Werror -Wignore::ImportWarning -O ./bzr selftest --subunit $(tests) | tee selftest.log
46
46
        # An empty log file should catch errors in the $(PYTHON)
47
47
        # command above (the '|' swallow any errors since 'make'
48
48
        # sees the 'tee' exit code for the whole line