Skip to content

Commit

Permalink
init installdirs structure (avoids warn-as-error)
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Naughton <naughtont@ornl.gov>
  • Loading branch information
naughtont3 authored and rhc54 committed Oct 3, 2024
1 parent 151842a commit c820507
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions src/mca/prteinstalldirs/env/prte_installdirs_env.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,26 @@ prte_prteinstalldirs_base_component_t prte_mca_prteinstalldirs_env_component = {
/* Component open and close functions */
.pmix_mca_open_component = prteinstalldirs_env_open
},

/* Next the prte_install_dirs_t install_dirs_data information */
.install_dirs_data =
{
NULL,
.prefix = NULL,
.exec_prefix = NULL,
.bindir = NULL,
.sbindir = NULL,
.libexecdir = NULL,
.datarootdir = NULL,
.datadir = NULL,
.sysconfdir = NULL,
.sharedstatedir = NULL,
.localstatedir = NULL,
.libdir = NULL,
.includedir = NULL,
.infodir = NULL,
.mandir = NULL,
.prtedatadir = NULL,
.prtelibdir = NULL,
.prteincludedir = NULL,
},
};

Expand Down

0 comments on commit c820507

Please sign in to comment.