Mercurial > hg-stable
changeset 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 | 345f4fa4cc89 |
children | 60ee2593a270 |
files | setup.py |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Fri Mar 25 16:23:23 2016 -0500 +++ b/setup.py Tue Mar 22 16:08:02 2016 -0700 @@ -505,8 +505,9 @@ packages = ['mercurial', 'mercurial.hgweb', 'mercurial.httpclient', 'mercurial.pure', - 'hgext', 'hgext.convert', 'hgext.highlight', 'hgext.largefiles', - 'hgext.zeroconf', 'hgext3rd'] + 'hgext', 'hgext.convert', 'hgext.fsmonitor', + 'hgext.fsmonitor.pywatchman', 'hgext.highlight', + 'hgext.largefiles', 'hgext.zeroconf', 'hgext3rd'] common_depends = ['mercurial/util.h']