Skip to content

Commit b7f9d29

Browse files
authored
Merge pull request #10264 from jjhursey/alias-autogen
Add 'openpmix' alias for 'pmix' when disabling 3rd party
2 parents 0a2d577 + 17ad232 commit b7f9d29

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

autogen.pl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Copyright (c) 2013-2020 Intel, Inc. All rights reserved.
88
# Copyright (c) 2015-2021 Research Organization for Information Science
99
# and Technology (RIST). All rights reserved.
10-
# Copyright (c) 2015-2021 IBM Corporation. All rights reserved.
10+
# Copyright (c) 2015-2022 IBM Corporation. All rights reserved.
1111
# Copyright (c) 2020 Amazon.com, Inc. or its affiliates.
1212
# All Rights reserved.
1313
#
@@ -1326,7 +1326,10 @@ sub replace_config_sub_guess {
13261326
if ($no_prrte_arg) {
13271327
push(@disabled_3rdparty_packages, "prrte");
13281328
}
1329-
1329+
# Alias: 'openpmix' -> 'pmix'
1330+
if (list_contains("openpmix", @disabled_3rdparty_packages)) {
1331+
push(@disabled_3rdparty_packages, "pmix");
1332+
}
13301333

13311334
# Make sure we got a submodule-full clone. If not, abort and let a
13321335
# human figure it out.

0 commit comments

Comments
 (0)