diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-09-10 17:19:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-10 17:19:06 +0200 |
commit | 095647cd6f67fcc761ef49460bb94ba5cc38a1c3 (patch) | |
tree | 36dcce6eca48dfb223a7dda8afe28a53b58ff971 | |
parent | 52335367bccc9ea89d53713e5d3bd76af9669238 (diff) | |
parent | 82025e7dbe0d01c587deb145cb9b2375fdaa5bc3 (diff) | |
download | podman-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 $@ |