kou commented on code in PR #37684:
URL: https://github.com/apache/arrow/pull/37684#discussion_r1343511170
##########
r/configure:
##########
@@ -298,6 +254,11 @@ set_pkg_vars () {
if [ "$ARROW_R_CXXFLAGS" ]; then
PKG_CFLAGS="$PKG_CFLAGS $ARROW_R_CXXFLAGS"
fi
+
+ if [ "$UNAME" = "Darwin" ] && [ $(expr `sw_vers -productVersion` : '10\.13'
) -gt 3 ]; then
Review Comment:
Hmm. It seems working:
```cosnole
$ expr 11 : '10\.13' > /dev/null; echo $?
1
$ expr 10.15 : '10\.13' > /dev/null; echo $?
1
$ expr 10.13 : '10\.13' > /dev/null; echo $?
0
$ expr 10.13.9 : '10\.13' > /dev/null; echo $?
0
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]