Skip to content

Commit 95204da

Browse files
authored
Merge pull request #8715 from bwbarrett/bugfix/shared-components-should-be-possible-but-i-made-a-typo
build: Fix typo that disabled shared components
2 parents edd0512 + cbcb570 commit 95204da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/opal_mca.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ AC_DEFUN([MCA_COMPONENT_COMPILE_MODE],[
719719
# static.
720720
if test "$STATIC_COMPONENT" = "1"; then
721721
$4=static
722-
elif test "SHARED_COMPONENT" = "1"; then
722+
elif test "$SHARED_COMPONENT" = "1"; then
723723
$4=dso
724724
elif test "$STATIC_FRAMEWORK" = "1"; then
725725
$4=static

0 commit comments

Comments
 (0)