Skip to content

Commit

Permalink
Makefile: fix $PWD expansion
Browse files Browse the repository at this point in the history
  • Loading branch information
makenowjust authored and jhass committed Jan 4, 2018
1 parent 2524362 commit 4648c1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ SOURCES := $(shell find src -name '*.cr')
SPEC_SOURCES := $(shell find spec -name '*.cr')
FLAGS := $(if $(release),--release )$(if $(stats),--stats )$(if $(progress),--progress )$(if $(threads),--threads $(threads) )$(if $(debug),-d )$(if $(static),--static )$(if $(LDFLAGS),--link-flags="$(LDFLAGS)" )
SPEC_FLAGS := $(if $(verbose),-v )$(if $(junit_output),--junit_output $(junit_output) )
EXPORTS := $(if $(release),,CRYSTAL_CONFIG_PATH=$PWD/src)
EXPORTS := $(if $(release),,CRYSTAL_CONFIG_PATH="$(PWD)/src")
SHELL = sh
LLVM_CONFIG_FINDER := \
[ -n "$(LLVM_CONFIG)" ] && command -v "$(LLVM_CONFIG)" || \
Expand Down

0 comments on commit 4648c1d

Please sign in to comment.