# HG changeset patch # User Sean Farley # Date 2016-03-22 23:08:02 # Node ID 776fd2e2cf5a92a9cea9f36003054cee069206f3 # Parent 345f4fa4cc8912bb722ad3e35d68858487420bc6 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. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -505,8 +505,9 @@ cmdclass = {'build': hgbuild, 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']