Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct confusion over help file names #1815

Merged
merged 1 commit into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions src/docs/show-help-files/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -36,25 +36,25 @@ SPHINX_OPTS ?= --keep-going -j auto
RST_SOURCE_FILES = \
$(srcdir)/prrte-rst-content/*.rst \
$(srcdir)/index.rst \
$(srcdir)/help-schizo-pinfo.rst \
$(srcdir)/help-schizo-prte.rst \
$(srcdir)/help-schizo-prted.rst \
$(srcdir)/help-schizo-prterun.rst \
$(srcdir)/help-schizo-prun.rst \
$(srcdir)/help-schizo-pterm.rst
$(srcdir)/help-prte-info.rst \
$(srcdir)/help-prte.rst \
$(srcdir)/help-prted.rst \
$(srcdir)/help-prterun.rst \
$(srcdir)/help-prun.rst \
$(srcdir)/help-pterm.rst

TXT_OUTDIR = $(OUTDIR)/text

# These files are the ones that are built that we care about (Sphinx
# will emit lots of files in the TXT_OUTDIR; these are the only ones
# that we care about).
ALL_TXT_BUILT = \
$(TXT_OUTDIR)/help-schizo-pinfo.txt \
$(TXT_OUTDIR)/help-schizo-prte.txt \
$(TXT_OUTDIR)/help-schizo-prted.txt \
$(TXT_OUTDIR)/help-schizo-prterun.txt \
$(TXT_OUTDIR)/help-schizo-prun.txt \
$(TXT_OUTDIR)/help-schizo-pterm.txt
$(TXT_OUTDIR)/help-prte-info.txt \
$(TXT_OUTDIR)/help-prte.txt \
$(TXT_OUTDIR)/help-prted.txt \
$(TXT_OUTDIR)/help-prterun.txt \
$(TXT_OUTDIR)/help-prun.txt \
$(TXT_OUTDIR)/help-pterm.txt

#-------------------

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.. -*- rst -*-

Copyright (c) 2021-2022 Nanook Consulting. All rights reserved.
Copyright (c) 2021-2023 Nanook Consulting. All rights reserved.
Copyright (c) 2023 Jeffrey M. Squyres. All rights reserved.

$COPYRIGHT$
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.. -*- rst -*-

Copyright (c) 2021-2022 Nanook Consulting. All rights reserved.
Copyright (c) 2021-2023 Nanook Consulting. All rights reserved.
Copyright (c) 2023 Jeffrey M. Squyres. All rights reserved.

$COPYRIGHT$
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.. -*- rst -*-

Copyright (c) 2021-2022 Nanook Consulting. All rights reserved.
Copyright (c) 2021-2023 Nanook Consulting. All rights reserved.
Copyright (c) 2023 Jeffrey M. Squyres. All rights reserved.

$COPYRIGHT$
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.. -*- rst -*-

Copyright (c) 2021-2022 Nanook Consulting. All rights reserved.
Copyright (c) 2021-2023 Nanook Consulting. All rights reserved.
Copyright (c) 2023 Jeffrey M. Squyres. All rights reserved.

$COPYRIGHT$
Expand Down
12 changes: 6 additions & 6 deletions src/docs/show-help-files/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ harmelss by-products; we ignore them.

.. toctree::

Pinfo <help-schizo-pinfo>
Pinfo <help-prte-info>

Prte <help-schizo-prte>
Prte <help-prte>

Prted <help-schizo-prted>
Prted <help-prted>

Prterun <help-schizo-prterun>
Prterun <help-prterun>

Prun <help-schizo-prun>
Prun <help-prun>

Prun <help-schizo-pterm>
Prun <help-pterm>

Have to also include these additional files so that Sphinx doesn't
complain that there are RST files in the doc tree that aren't used.
Expand Down
12 changes: 6 additions & 6 deletions src/mca/schizo/prte/schizo_prte.c
Original file line number Diff line number Diff line change
Expand Up @@ -462,27 +462,27 @@ static int parse_cli(char **argv, pmix_cli_result_t *results,
if (0 == strcmp(prte_tool_actual, "prte")) {
myoptions = prteoptions;
shorts = prteshorts;
helpfile = "help-schizo-prte.txt";
helpfile = "help-prte.txt";
} else if (0 == strcmp(prte_tool_actual, "prterun")) {
myoptions = prterunoptions;
shorts = prterunshorts;
helpfile = "help-schizo-prterun.txt";
helpfile = "help-prterun.txt";
} else if (0 == strcmp(prte_tool_actual, "prted")) {
myoptions = prtedoptions;
shorts = prtedshorts;
helpfile = "help-schizo-prted.txt";
helpfile = "help-prted.txt";
} else if (0 == strcmp(prte_tool_actual, "prun")) {
myoptions = prunoptions;
shorts = prunshorts;
helpfile = "help-schizo-prun.txt";
helpfile = "help-prun.txt";
} else if (0 == strcmp(prte_tool_actual, "pterm")) {
myoptions = ptermoptions;
shorts = ptermshorts;
helpfile = "help-schizo-pterm.txt";
helpfile = "help-pterm.txt";
} else if (0 == strcmp(prte_tool_actual, "prte_info")) {
myoptions = pinfooptions;
shorts = pinfoshorts;
helpfile = "help-schizo-pinfo.txt";
helpfile = "help-prte-info.txt";
}
pmix_tool_msg = "Report bugs to: https://github.com/openpmix/prrte";
pmix_tool_org = "PRRTE";
Expand Down
2 changes: 0 additions & 2 deletions src/tools/prte_info/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ AM_LDFLAGS = $(prte_hwloc_LDFLAGS) $(prte_libevent_LDFLAGS) $(prte_pmix_LDFLAGS)

bin_PROGRAMS = prte_info

dist_prtedata_DATA = help-prte-info.txt

prte_info_SOURCES = \
pinfo.h \
prte_info.c \
Expand Down
99 changes: 0 additions & 99 deletions src/tools/prte_info/help-prte-info.txt

This file was deleted.

4 changes: 1 addition & 3 deletions src/tools/prun/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Copyright (c) 2015-2020 Intel, Inc. All rights reserved.
# Copyright (c) 2019 Research Organization for Information Science
# and Technology (RIST). All rights reserved.
# Copyright (c) 2021-2022 Nanook Consulting. All rights reserved.
# Copyright (c) 2021-2023 Nanook Consulting. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
Expand All @@ -41,8 +41,6 @@ AM_CFLAGS = \

bin_PROGRAMS = prun

dist_prtedata_DATA = help-prun.txt

prun_SOURCES = \
main.c \
prun.c \
Expand Down
Loading