From ff3605e46f295fe712e79ac1ad593aee78ba5adc Mon Sep 17 00:00:00 2001 From: Marc Worrell Date: Wed, 14 Jul 2021 12:20:16 +0200 Subject: [PATCH 1/2] Fix a problem where compilation failed if bcrypt abspath has spaces in it. --- c_src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c_src/Makefile b/c_src/Makefile index b6df8de..9865ab5 100644 --- a/c_src/Makefile +++ b/c_src/Makefile @@ -1,7 +1,7 @@ # Based on c_src.mk from erlang.mk by Loic Hoguin -CURDIR := $(shell pwd) -BASEDIR := $(abspath $(CURDIR)/..) +CURDIR := . +BASEDIR := .. PROJECT ?= $(notdir $(BASEDIR)) PROJECT := $(strip $(PROJECT)) From 06477507777add3def40ec27f3e02687f9b4833d Mon Sep 17 00:00:00 2001 From: Marc Worrell Date: Wed, 14 Jul 2021 12:23:19 +0200 Subject: [PATCH 2/2] Add OTP24 test target --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7207ecd..19d3c65 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: - otp_version: [21.3,22.3,23] + otp_version: [21.3, 22.3, 23, 24] os: [ubuntu-latest] container: