File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4383,7 +4383,7 @@ R_CONFIG_ARGS="${ac_configure_args}"
43834383
43844384
43854385## Shortcut for musl which refuses to identify itself at C level
4386- if test "${host_os}" == "linux-musl"; then
4386+ if test "${host_os}" = "linux-musl"; then
43874387
43884388printf "%s\n" "#define OS_MUSL 1" >>confdefs.h
43894389
@@ -60383,15 +60383,15 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
6038360383 as_fn_error $? "--with-newAccelerate requires macOS SDK >= 14.3." "$LINENO" 5
6038460384 fi
6038560385fi
60386- if test "x${use_accelerate}" == xyes; then
60386+ if test "x${use_accelerate}" = xyes; then
6038760387 BUILD_NEW_ACCELERATE_TRUE=
6038860388 BUILD_NEW_ACCELERATE_FALSE='#'
6038960389else
6039060390 BUILD_NEW_ACCELERATE_TRUE='#'
6039160391 BUILD_NEW_ACCELERATE_FALSE=
6039260392fi
6039360393
60394- if test "x${use_accelerate_lapack}" == xyes; then
60394+ if test "x${use_accelerate_lapack}" = xyes; then
6039560395 BUILD_NEW_ACCELERATE_LAPACK_TRUE=
6039660396 BUILD_NEW_ACCELERATE_LAPACK_FALSE='#'
6039760397else
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ R_CONFIG_ARGS="${ac_configure_args}"
136136AC_SUBST ( R_CONFIG_ARGS )
137137
138138# # Shortcut for musl which refuses to identify itself at C level
139- if test "${host_os}" == "linux-musl"; then
139+ if test "${host_os}" = "linux-musl"; then
140140 AC_DEFINE ( OS_MUSL , 1 , [ Define if running on Linux-musl] )
141141fi
142142
@@ -2995,9 +2995,9 @@ sdk_OK=no)
29952995dnl No longer used as we only build (or not) BLAS and LAPACK shims
29962996dnl AC_DEFINE(USE_NEW_ACCELERATE, 1, [Define to use Apple's (new) Accelerate])
29972997fi
2998- AM_CONDITIONAL(BUILD_NEW_ACCELERATE, [ test "x${use_accelerate}" == xyes] )
2998+ AM_CONDITIONAL(BUILD_NEW_ACCELERATE, [ test "x${use_accelerate}" = xyes] )
29992999AM_CONDITIONAL(BUILD_NEW_ACCELERATE_LAPACK,
3000- [ test "x${use_accelerate_lapack}" == xyes] )
3000+ [ test "x${use_accelerate_lapack}" = xyes] )
30013001
30023002dnl record compiler versions
30033003CC_VER=`${CC} --version | ${SED} -n 1p`
You can’t perform that action at this time.
0 commit comments