Skip to content

Commit

Permalink
Fix a problem where compilation failed if bcrypt abspath has spaces i…
Browse files Browse the repository at this point in the history
…n it.
  • Loading branch information
mworrell committed Jul 14, 2021
1 parent b09e8f9 commit ff3605e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c_src/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Based on c_src.mk from erlang.mk by Loic Hoguin <[email protected]>

CURDIR := $(shell pwd)
BASEDIR := $(abspath $(CURDIR)/..)
CURDIR := .
BASEDIR := ..

PROJECT ?= $(notdir $(BASEDIR))
PROJECT := $(strip $(PROJECT))
Expand Down

0 comments on commit ff3605e

Please sign in to comment.