diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2017-11-01 13:39:16 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@gmail.com> | 2017-11-01 13:39:16 -0400 |
commit | 7fa1efd0d75afcca835366779d593b282005bc5c (patch) | |
tree | 6f75cb2d969269b5dcc5ffa09ce05666630c763a /Makefile | |
parent | c13f61798aa7bcf7b4de7ee31aa30148a3b08d97 (diff) | |
download | podman-7fa1efd0d75afcca835366779d593b282005bc5c.tar.gz podman-7fa1efd0d75afcca835366779d593b282005bc5c.tar.bz2 podman-7fa1efd0d75afcca835366779d593b282005bc5c.zip |
Fix paths for tests
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -63,7 +63,7 @@ endif touch "$(GOPATH)/.gopathok" .bindir: - mkdir -p bin/ + mkdir -p "$(GOPKGDIR)/bin/" lint: .gopathok @echo "checking lint" @@ -157,10 +157,7 @@ install.completions: install ${SELINUXOPT} -m 644 -D completions/bash/kpod ${BASHINSTALLDIR} uninstall: - rm -f $(BINDIR)/crio - rm -f $(BINDIR)/crioctl rm -f $(LIBEXECDIR)/crio/conmon - rm -f $(LIBEXECDIR)/crio/pause for i in $(filter %.1,$(MANPAGES)); do \ rm -f $(MANDIR)/man8/$$(basename $${i}); \ done |