From 3dbf45fdcae3abea76229c214af6c6252df08c8b Mon Sep 17 00:00:00 2001 From: yui-knk Date: Wed, 17 May 2023 13:06:03 +0900 Subject: [PATCH] Stop passing YACC arg for make After https://github.com/ruby/ruby/pull/7798, ruby uses lrama as default then no need to pass YACC anymore. --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 67f22c5c..483afb45 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -84,5 +84,5 @@ jobs: - run: sudo apt-get --purge remove bison - run: ../autogen.sh - run: ../configure -C --disable-install-doc - - run: make YACC=$(readlink -f $(pwd)/../tool/lrama/exe/lrama) + - run: make - run: make test-all