Skip to content

Commit

Permalink
fix recursive Travis-CI build
Browse files Browse the repository at this point in the history
- `which ./host-dmd` in the CI environment returns `host-dmd` instead
  of an absolute path and therefor fails to build
  • Loading branch information
MartinNowak committed Sep 6, 2015
1 parent 2c61836 commit a29ab22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/posix.mak
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ endif
ifeq (,$(AUTO_BOOTSTRAP))
# No bootstrap, a $(HOST_DC) installation must be available
HOST_DMD?=dmd
HOST_DMD_PATH=$(shell which $(HOST_DMD))
HOST_DMD_PATH=$(abspath $(shell which $(HOST_DMD)))
ifeq (,$(HOST_DMD_PATH))
$(error '$(HOST_DMD)' not found, get a D compiler or make AUTO_BOOTSTRAP=1)
endif
Expand Down

0 comments on commit a29ab22

Please sign in to comment.