1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

GNUMAKEFLAGS is too new for mac

It is relatively well known that mac does not update its command line
tools, and make is no exception.  They ship GNU make 3.x, which didn't
yet implemented GNUMAKEFLAGS.

Resort to MAKEFLAGS there.
This commit is contained in:
卜部昌平 2021-10-25 13:39:27 +09:00
parent 748688a63d
commit b682f76339
Notes: git 2021-10-26 09:06:11 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ jobs:
working-directory: src
- name: Set ENV
run: |
echo "GNUMAKEFLAGS=-j$((1 + $(sysctl -n hw.activecpu)))" >> $GITHUB_ENV
echo "MAKEFLAGS=-j$((1 + $(sysctl -n hw.activecpu)))" >> $GITHUB_ENV
- run: ./autogen.sh
working-directory: src
- name: Run configure

View file

@ -34,7 +34,7 @@ jobs:
working-directory: src
- name: Set ENV
run: |
echo "GNUMAKEFLAGS=-j$((1 + $(sysctl -n hw.activecpu)))" >> $GITHUB_ENV
echo "MAKEFLAGS=-j$((1 + $(sysctl -n hw.activecpu)))" >> $GITHUB_ENV
- run: ./autogen.sh
working-directory: src
- name: Run configure