comparison setup.py @ 28625:776fd2e2cf5a

setup: add missing hgext.fsmonitor Before this patch, fsmonitor was not installed along with other extensions. It did correctly build the C files needed but forgot to copy over the python files. This patch fixes it by adding fsmonitor and fsmonitor.pywatchman to the correct install variable.
author Sean Farley <sean@farley.io>
date Tue, 22 Mar 2016 16:08:02 -0700
parents c11f0992d124
children ee2e4a2c3690
comparison
equal deleted inserted replaced
28624:345f4fa4cc89 28625:776fd2e2cf5a
503 'build_hgexe': buildhgexe, 503 'build_hgexe': buildhgexe,
504 } 504 }
505 505
506 packages = ['mercurial', 'mercurial.hgweb', 'mercurial.httpclient', 506 packages = ['mercurial', 'mercurial.hgweb', 'mercurial.httpclient',
507 'mercurial.pure', 507 'mercurial.pure',
508 'hgext', 'hgext.convert', 'hgext.highlight', 'hgext.largefiles', 508 'hgext', 'hgext.convert', 'hgext.fsmonitor',
509 'hgext.zeroconf', 'hgext3rd'] 509 'hgext.fsmonitor.pywatchman', 'hgext.highlight',
510 'hgext.largefiles', 'hgext.zeroconf', 'hgext3rd']
510 511
511 common_depends = ['mercurial/util.h'] 512 common_depends = ['mercurial/util.h']
512 513
513 osutil_ldflags = [] 514 osutil_ldflags = []
514 515