@@ -103,10 +103,10 @@ AC_DEFUN([OPAL_MCA],[
103
103
type=$item
104
104
fi
105
105
if test -z $comp ; then
106
- AS_VAR_COPY ( [ AS_TR_SH ( [ DISABLE_$type] ) ] , [ 1] )
106
+ AS_VAR_SET ( [ AS_TR_SH ( [ DISABLE_$type] ) ] , [ 1] )
107
107
msg="$item $msg"
108
108
else
109
- AS_VAR_COPY ( [ AS_TR_SH ( [ DISABLE_$type_$comp] ) ] , [ 1] )
109
+ AS_VAR_SET ( [ AS_TR_SH ( [ DISABLE_$type_$comp] ) ] , [ 1] )
110
110
msg="$item $msg"
111
111
fi
112
112
done
@@ -149,7 +149,7 @@ AC_DEFUN([OPAL_MCA],[
149
149
AC_MSG_ERROR ( [ *** The enable-mca-direct flag requires a
150
150
*** list of type-component pairs. Invalid input detected.] )
151
151
else
152
- AS_VAR_COPY ( [ AS_TR_SH ( [ DIRECT_$type] ) ] , [ AS_TR_SH ( [ $comp] ) ] )
152
+ AS_VAR_SET ( [ AS_TR_SH ( [ DIRECT_$type] ) ] , [ AS_TR_SH ( [ $comp] ) ] )
153
153
msg="$item $msg"
154
154
fi
155
155
done
@@ -184,7 +184,7 @@ AC_DEFUN([OPAL_MCA],[
184
184
IFS="${IFS}$PATH_SEPARATOR,"
185
185
msg=
186
186
for item in $enable_mca_dso; do
187
- AS_VAR_COPY ( [ AS_TR_SH ( [ DSO_$item] ) ] , [ 1] )
187
+ AS_VAR_SET ( [ AS_TR_SH ( [ DSO_$item] ) ] , [ 1] )
188
188
msg="$item $msg"
189
189
done
190
190
IFS="$ifs_save"
@@ -212,7 +212,7 @@ AC_DEFUN([OPAL_MCA],[
212
212
IFS="${IFS}$PATH_SEPARATOR,"
213
213
msg=
214
214
for item in $enable_mca_static; do
215
- AS_VAR_COPY ( [ AS_TR_SH ( [ STATIC_$item] ) ] , [ 1] )
215
+ AS_VAR_SET ( [ AS_TR_SH ( [ STATIC_$item] ) ] , [ 1] )
216
216
msg="$item $msg"
217
217
done
218
218
IFS="$ifs_save"
@@ -696,7 +696,7 @@ AC_DEFUN([MCA_COMPONENT_COMPILE_MODE],[
696
696
AS_VAR_COPY ( [ SHARED_COMPONENT] , [ DSO_$2 _$3 ] )
697
697
698
698
STATIC_FRAMEWORK="$STATIC_$2 "
699
- AS_VAR_COPY ( [ STATIC_COMPONENT] , [ DSO_ $2 _$3 ] )
699
+ AS_VAR_COPY ( [ STATIC_COMPONENT] , [ STATIC_ $2 _$3 ] )
700
700
701
701
# Look for the most specific specifier between static/dso. If
702
702
# there is a tie (either neither or both specified), prefer
0 commit comments