~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Mark Hammond
  • Date: 2008-12-28 05:15:56 UTC
  • mto: (3932.1.1 prepare-1.11)
  • mto: This revision was merged to the branch mainline in revision 3937.
  • Revision ID: mhammond@skippinet.com.au-20081228051556-9f0o4s3itpnhe1ec
change comment as requested by John

Show diffs side-by-side

added added

removed removed

Lines of Context:
550
550
    for root, dirs, files in os.walk('bzrlib/plugins'):
551
551
        if root == 'bzrlib/plugins':
552
552
            plugins = set(dirs)
553
 
            # py2exe may find references to part of the plugin (eg, the tests)
554
 
            # so we tell py2exe to leave the plugins out of the .zip file
 
553
            # We ship plugins as normal files on the file-system - however,
 
554
            # the build process can cause *some* of these plugin files to end
 
555
            # up in library.zip. Thus, we saw (eg) "plugins/svn/test" in
 
556
            # library.zip, and then saw import errors related to that as the
 
557
            # rest of the svn plugin wasn't. So we tell py2exe to leave the
 
558
            # plugins out of the .zip file
555
559
            excludes.extend(["bzrlib.plugins." + d for d in dirs])
556
560
        x = []
557
561
        for i in files: