mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 19:50:31 -04:00
- Update to 1.27.9 - Rename to comply with Python naming policy and flavorize - Assume MAINTAINER
11 lines
516 B
Python
11 lines
516 B
Python
--- awscli/help.py.orig 2022-11-14 19:07:18 UTC
|
|
+++ awscli/help.py
|
|
@@ -109,7 +109,7 @@ class PosixHelpRenderer(PagingHelpRenderer):
|
|
if self._exists_on_path('groff'):
|
|
cmdline = ['groff', '-m', 'man', '-T', 'ascii']
|
|
elif self._exists_on_path('mandoc'):
|
|
- cmdline = ['mandoc', '-T', 'ascii']
|
|
+ cmdline = ['mandoc', '-man', '-T', 'ascii']
|
|
else:
|
|
raise ExecutableNotFoundError('groff or mandoc')
|
|
LOG.debug("Running command: %s", cmdline)
|