diff options
author | Dan Kegel <[email protected]> | 2022-01-20 14:15:42 -0800 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-01-21 07:39:47 +0100 |
commit | f4fdf8dce990058adff06b85819bc41b9038a0b1 (patch) | |
tree | 7cd8763ab170d544434a8911757d2b80692b123f /Makefile | |
parent | 9c3f9537be5a3a0182ea4fe0b26e8cefa442c815 (diff) | |
download | tinygo-f4fdf8dce990058adff06b85819bc41b9038a0b1.tar.gz tinygo-f4fdf8dce990058adff06b85819bc41b9038a0b1.zip |
Makefile: detected TINYGO now works even if a rule changes directory
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ GOTESTFLAGS ?= -v MD5SUM = md5sum # tinygo binary for tests -TINYGO ?= $(call detect,tinygo,tinygo build/tinygo) +TINYGO ?= $(call detect,tinygo,tinygo $(CURDIR)/build/tinygo) # Use CCACHE for LLVM if possible ifneq (, $(shell command -v ccache 2> /dev/null)) |