Comments
Patch
@@ -463,10 +463,11 @@
return os.path.join(self.build_temp, dir, 'hg.exe')
class hginstall(install):
- def get_sub_commands(self):
- # Screen out egg related commands to prevent egg generation
- excl = set(['install_egg_info', 'bdist_egg'])
- return filter(lambda x: x not in excl,
install.get_sub_commands(self))
+ pass
+## def get_sub_commands(self):
+## # Screen out egg related commands to prevent egg generation
+## excl = set(['install_egg_info', 'bdist_egg'])
+## return filter(lambda x: x not in excl,
install.get_sub_commands(self))
class hginstalllib(install_lib):
'''
@@ -2464,7 +2464,7 @@
b' build %(compiler)s --build-base="%(base)s"'
b' install --force --prefix="%(prefix)s"'
b' --install-lib="%(libdir)s"'
- b' --install-scripts="%(bindir)s" %(nohome)s >%(logfile)s
2>&1'
+ b' --install-scripts="%(bindir)s" %(nohome)s' #
>%(logfile)s 2>&1'
% {b'exe': exe, b'pure': pure,