~ubuntu-branches/ubuntu/lucid/enigmail/lucid-security

« back to all changes in this revision

Viewing changes to build/pymake/make.py

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-04-18 15:10:32 UTC
  • mfrom: (0.11.1) (19.1.1 lucid-proposed)
  • Revision ID: package-import@ubuntu.com-20120418151032-2u0e8yetqqpp5tam
Tags: 2:1.4.1-0ubuntu0.10.04.1
* New upstream release v1.4.1
  - LP: #987305
  - Fix LP: #968122 - localization messed up

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
import pymake.command, pymake.process
11
11
 
12
12
import gc
13
 
gc.disable()
14
 
 
15
 
pymake.command.main(sys.argv[1:], os.environ, os.getcwd(), cb=sys.exit)
16
 
pymake.process.ParallelContext.spin()
17
 
assert False, "Not reached"
 
13
 
 
14
if __name__ == '__main__':
 
15
  gc.disable()
 
16
 
 
17
  pymake.command.main(sys.argv[1:], os.environ, os.getcwd(), cb=sys.exit)
 
18
  pymake.process.ParallelContext.spin()
 
19
  assert False, "Not reached"