summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-09-10 17:19:06 +0200
committerGitHub <noreply@github.com>2019-09-10 17:19:06 +0200
commit095647cd6f67fcc761ef49460bb94ba5cc38a1c3 (patch)
tree36dcce6eca48dfb223a7dda8afe28a53b58ff971
parent52335367bccc9ea89d53713e5d3bd76af9669238 (diff)
parent82025e7dbe0d01c587deb145cb9b2375fdaa5bc3 (diff)
downloadpodman-095647cd6f67fcc761ef49460bb94ba5cc38a1c3.tar.gz
podman-095647cd6f67fcc761ef49460bb94ba5cc38a1c3.tar.bz2
podman-095647cd6f67fcc761ef49460bb94ba5cc38a1c3.zip
Merge pull request #3966 from cfelder/fixup-makefile-bsd
Fixup Makefile for BSD systems, e.g. macOS
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4f51adb67..e32f42631 100644
--- a/Makefile
+++ b/Makefile
@@ -136,8 +136,8 @@ help:
.gopathok:
ifeq ("$(wildcard $(GOPKGDIR))","")
mkdir -p "$(GOPKGBASEDIR)"
- ln -sfnT "$(CURDIR)" "$(GOPKGDIR)"
- ln -sfnT "$(CURDIR)/vendor/github.com/varlink" "$(FIRST_GOPATH)/src/github.com/varlink"
+ ln -sfn "$(CURDIR)" "$(GOPKGDIR)"
+ ln -sfn "$(CURDIR)/vendor/github.com/varlink" "$(FIRST_GOPATH)/src/github.com/varlink"
endif
touch $@