From 4272335555c7a9d8e2339e18da7e17a8570695b2 Mon Sep 17 00:00:00 2001 From: Greg Steuck Date: Mon, 6 Jul 2020 21:37:50 -0700 Subject: Makefile: avoid non-portable realpath pwd -P works great and is portable. This fixes OpenBSD ci. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2b7fd2668..f386ef849 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ export CGO_ENABLED TARGETGOOS := $(TARGETOS) TARGETGOARCH := $(TARGETVMARCH) export GO111MODULE=on -export GOBIN=$(shell realpath .)/bin +export GOBIN=$(shell pwd -P)/bin GITREV=$(shell git rev-parse HEAD) ifeq ("$(shell git diff --shortstat)", "") -- cgit mrf-deployment