mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
20 lines
471 B
Diff
20 lines
471 B
Diff
--- setup.py.orig 2024-02-03 14:41:22
|
|
+++ setup.py 2024-02-03 14:41:42
|
|
@@ -40,14 +40,14 @@
|
|
|
|
class SdistCommand(sdist):
|
|
def run(self):
|
|
- generate_manpage()
|
|
+ # generate_manpage()
|
|
sdist.run(self)
|
|
|
|
|
|
if has_wheel:
|
|
class BdistwheelCommand(bdist_wheel):
|
|
def run(self):
|
|
- generate_manpage()
|
|
+ # generate_manpage()
|
|
bdist_wheel.run(self)
|
|
else:
|
|
class BdistwheelCommand(distutils.cmd.Command):
|