| 1 |
Fix default hostfile location (backported r26440)
|
| 2 |
|
| 3 |
https://bugs.gentoo.org/show_bug.cgi?id=420431
|
| 4 |
|
| 5 |
Patch by Orion Poplawski <orion AT SPAMFREE cora DOT nwra DOT com>
|
| 6 |
--- a/orte/runtime/orte_mca_params.c
|
| 7 |
+++ b/orte/runtime/orte_mca_params.c
|
| 8 |
@@ -225,7 +225,7 @@ int orte_register_params(void)
|
| 9 |
false, false, 1000, &orte_timeout_usec_per_proc);
|
| 10 |
|
| 11 |
/* default hostfile */
|
| 12 |
- asprintf(&orte_default_hostfile, "%s/etc/openmpi-default-hostfile", opal_install_dirs.prefix);
|
| 13 |
+ asprintf(&orte_default_hostfile, "%s/openmpi-default-hostfile", opal_install_dirs.sysconfdir);
|
| 14 |
mca_base_param_reg_string_name("orte", "default_hostfile",
|
| 15 |
"Name of the default hostfile (relative or absolute path, \"none\" to ignore environmental or default MCA param setting)",
|
| 16 |
false, false, orte_default_hostfile, &orte_default_hostfile);
|