##// END OF EJS Templates
filemerge: remove the hgmerge script...
Matt Mackall -
r6009:f0778159 default
parent child Browse files
Show More
@@ -66,9 +66,6 b' HGMERGE::'
66 will be executed with three arguments: local file, remote file,
66 will be executed with three arguments: local file, remote file,
67 ancestor file.
67 ancestor file.
68
68
69 The default program is "hgmerge", which is a shell script provided
70 by Mercurial with some sensible defaults.
71
72 (deprecated, use .hgrc)
69 (deprecated, use .hgrc)
73
70
74 HGRCPATH::
71 HGRCPATH::
@@ -97,11 +94,11 b' VISUAL::'
97 This is the name of the editor to use when committing. See EDITOR.
94 This is the name of the editor to use when committing. See EDITOR.
98
95
99 EDITOR::
96 EDITOR::
100 Sometimes Mercurial needs to open a text file in an editor for a user
97 Sometimes Mercurial needs to open a text file in an editor
101 to modify, for example when writing commit messages or when using the
98 for a user to modify, for example when writing commit messages.
102 hgmerge script. The editor it uses is determined by looking at the
99 The editor it uses is determined by looking at the environment
103 environment variables HGEDITOR, VISUAL and EDITOR, in that order. The
100 variables HGEDITOR, VISUAL and EDITOR, in that order. The first
104 first non-empty one is chosen. If all of them are empty, the editor
101 non-empty one is chosen. If all of them are empty, the editor
105 defaults to 'vi'.
102 defaults to 'vi'.
106
103
107 PYTHONPATH::
104 PYTHONPATH::
@@ -40,11 +40,6 b' try:'
40 except ImportError:
40 except ImportError:
41 pass
41 pass
42
42
43 if os.name in ['nt']:
44 extra['scripts'] = ['hg']
45 else:
46 extra['scripts'] = ['hg', 'hgmerge']
47
48 # specify version string, otherwise 'hg identify' will be used:
43 # specify version string, otherwise 'hg identify' will be used:
49 version = ''
44 version = ''
50
45
@@ -77,6 +72,7 b" setup(name='mercurial',"
77 url='http://selenic.com/mercurial',
72 url='http://selenic.com/mercurial',
78 description='Scalable distributed SCM',
73 description='Scalable distributed SCM',
79 license='GNU GPL',
74 license='GNU GPL',
75 scripts=['hg'],
80 packages=['mercurial', 'mercurial.hgweb', 'hgext', 'hgext.convert'],
76 packages=['mercurial', 'mercurial.hgweb', 'hgext', 'hgext.convert'],
81 ext_modules=ext_modules,
77 ext_modules=ext_modules,
82 data_files=[(os.path.join('mercurial', root),
78 data_files=[(os.path.join('mercurial', root),
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now