Skip to content

Commit 4ef93be

Browse files
author
ripley
committed
reports from checkbashisms
git-svn-id: https://svn.r-project.org/R/trunk@87499 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 74b2dd7 commit 4ef93be

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

configure

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

43884388
printf "%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
6038560385
fi
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='#'
6038960389
else
6039060390
BUILD_NEW_ACCELERATE_TRUE='#'
6039160391
BUILD_NEW_ACCELERATE_FALSE=
6039260392
fi
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='#'
6039760397
else

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ R_CONFIG_ARGS="${ac_configure_args}"
136136
AC_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])
141141
fi
142142

@@ -2995,9 +2995,9 @@ sdk_OK=no)
29952995
dnl No longer used as we only build (or not) BLAS and LAPACK shims
29962996
dnl AC_DEFINE(USE_NEW_ACCELERATE, 1, [Define to use Apple's (new) Accelerate])
29972997
fi
2998-
AM_CONDITIONAL(BUILD_NEW_ACCELERATE, [test "x${use_accelerate}" == xyes])
2998+
AM_CONDITIONAL(BUILD_NEW_ACCELERATE, [test "x${use_accelerate}" = xyes])
29992999
AM_CONDITIONAL(BUILD_NEW_ACCELERATE_LAPACK,
3000-
[test "x${use_accelerate_lapack}" == xyes])
3000+
[test "x${use_accelerate_lapack}" = xyes])
30013001

30023002
dnl record compiler versions
30033003
CC_VER=`${CC} --version | ${SED} -n 1p`

0 commit comments

Comments
 (0)