Skip to content
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
6 changes: 0 additions & 6 deletions opal/mca/pmix/pmix3x/pmix/config/pmix.m4
Original file line number Diff line number Diff line change
Expand Up @@ -896,12 +896,6 @@ AC_DEFUN([PMIX_SETUP_CORE],[
# AC_CONFIG_FILES(pmix_config_prefix[test/run_tests15.pl], [chmod +x test/run_tests15.pl])


############################################################################
# Check for building man pages
############################################################################
pmix_show_subtitle "Man page setup"
PMIX_SETUP_MAN_PAGES

############################################################################
# final output
############################################################################
Expand Down
91 changes: 0 additions & 91 deletions opal/mca/pmix/pmix3x/pmix/config/pmix_setup_man_pages.m4

This file was deleted.

3 changes: 0 additions & 3 deletions opal/mca/pmix/pmix3x/pmix/src/tools/pmix_info/support.c
Original file line number Diff line number Diff line change
Expand Up @@ -1327,13 +1327,11 @@ void pmix_info_do_config(bool want_all)
char *debug;
char *have_dl;
char *symbol_visibility;
char *manpages;

/* setup the strings that don't require allocations*/
debug = PMIX_ENABLE_DEBUG ? "yes" : "no";
have_dl = PMIX_HAVE_PDL_SUPPORT ? "yes" : "no";
symbol_visibility = PMIX_HAVE_VISIBILITY ? "yes" : "no";
manpages = PMIX_ENABLE_MAN_PAGES ? "yes" : "no";

/* output values */
pmix_info_out("Configured by", "config:user", PMIX_CONFIGURE_USER);
Expand Down Expand Up @@ -1375,5 +1373,4 @@ void pmix_info_do_config(bool want_all)
pmix_info_out("Internal debug support", "option:debug", debug);
pmix_info_out("dl support", "option:dlopen", have_dl);
pmix_info_out("Symbol vis. support", "options:visibility", symbol_visibility);
pmix_info_out("Manpages built", "options:man-pages", manpages);
}