diff options
author | Lee Hyeon <hyeon@pluto.network> | 2017-07-31 18:00:17 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2017-07-31 18:00:17 +0800 |
commit | 13cda8d9b6113c7df583e68bdce5adf1bca2b8a8 (patch) | |
tree | 8cb5656fd11856bb8cb0f9ea780eb150cbf521ea /Makefile | |
parent | 4f9789b28d570ccd234640f1c13c08cb9f16f4ee (diff) | |
download | dexon-13cda8d9b6113c7df583e68bdce5adf1bca2b8a8.tar.gz dexon-13cda8d9b6113c7df583e68bdce5adf1bca2b8a8.tar.zst dexon-13cda8d9b6113c7df583e68bdce5adf1bca2b8a8.zip |
Makefile: fixed GOBIN absolute path issue (#14854)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ .PHONY: geth-darwin geth-darwin-386 geth-darwin-amd64 .PHONY: geth-windows geth-windows-386 geth-windows-amd64 -GOBIN = build/bin +GOBIN = $(pwd)/build/bin GO ?= latest geth: |