Skip to content

Commit cbcb570

Browse files
committed
build: Fix typo that disabled shared components
Fix a typo in the MCA configure framework which meant that users could not specify individual components to be build as shared objects (only all components or all components in a framework). Signed-off-by: Brian Barrett <[email protected]>
1 parent 856a2b7 commit cbcb570

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)