diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-06-13 16:44:58 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-06-13 17:31:59 +0200 |
commit | 4f0ef40deb1ac77f25d1c7912faf578fa8f599de (patch) | |
tree | 3b7356a1105741ace6ad6da3e20e26d3c9ed0096 | |
parent | a2095c06988499ee32e769de78663367495be33a (diff) | |
download | systemd-4f0ef40deb1ac77f25d1c7912faf578fa8f599de.tar.gz |
man: drop obsolete HAVE_PYTHON conditional
It stopped making sense when automake support was dropped and python started
being required to perform a build.
Follow-up for 72cdb3e783174dcf9223a49f03e3b0e2ca95ddb8.
-rw-r--r-- | man/directives-template.xml | 2 | ||||
-rwxr-xr-x | tools/make-man-index.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/man/directives-template.xml b/man/directives-template.xml index 5038061467..e0063e051d 100644 --- a/man/directives-template.xml +++ b/man/directives-template.xml @@ -1,6 +1,6 @@ <!-- SPDX-License-Identifier: LGPL-2.1+ --> -<refentry id="systemd.directives" conditional="HAVE_PYTHON"> +<refentry id="systemd.directives"> <refentryinfo> <title>systemd.directives</title> <productname>systemd</productname> diff --git a/tools/make-man-index.py b/tools/make-man-index.py index 66027af02e..4d206ca0b6 100755 --- a/tools/make-man-index.py +++ b/tools/make-man-index.py @@ -9,7 +9,7 @@ from xml_helper import xml_parse, xml_print, tree MDASH = ' — ' if sys.version_info.major >= 3 else ' -- ' TEMPLATE = '''\ -<refentry id="systemd.index" conditional="HAVE_PYTHON"> +<refentry id="systemd.index"> <refentryinfo> <title>systemd.index</title> |