Skip to content

Commit 3634f2f

Browse files
authored
Merge pull request #25 from erlangpack/path-spaces
Fix a problem where compilation failed if bcrypt abspath has spaces in it
2 parents b09e8f9 + 0647750 commit 3634f2f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
otp_version: [21.3,22.3,23]
21+
otp_version: [21.3, 22.3, 23, 24]
2222
os: [ubuntu-latest]
2323

2424
container:

c_src/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Based on c_src.mk from erlang.mk by Loic Hoguin <essen@ninenines.eu>
22

3-
CURDIR := $(shell pwd)
4-
BASEDIR := $(abspath $(CURDIR)/..)
3+
CURDIR := .
4+
BASEDIR := ..
55

66
PROJECT ?= $(notdir $(BASEDIR))
77
PROJECT := $(strip $(PROJECT))

0 commit comments

Comments
 (0)