From c8205077e6578fad637592f2bd7c522ae20789d6 Mon Sep 17 00:00:00 2001 From: Thomas Naughton Date: Thu, 3 Oct 2024 13:59:45 -0400 Subject: [PATCH] init installdirs structure (avoids warn-as-error) Signed-off-by: Thomas Naughton --- .../env/prte_installdirs_env.c | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/src/mca/prteinstalldirs/env/prte_installdirs_env.c b/src/mca/prteinstalldirs/env/prte_installdirs_env.c index 30add560ab..187fff2e04 100644 --- a/src/mca/prteinstalldirs/env/prte_installdirs_env.c +++ b/src/mca/prteinstalldirs/env/prte_installdirs_env.c @@ -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, }, };