summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--rootless.md2
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index d7c3cf7bd..8795dd5ff 100644
--- a/Makefile
+++ b/Makefile
@@ -487,8 +487,8 @@ endef
fi
.install.md2man: .gopathok
- if [ ! -x "$(GOBIN)/go-md2man" ]; then \
- $(call go-get,github.com/cpuguy83/go-md2man); \
+ if [ ! -x "$(GOMD2MAN)" ]; then \
+ $(call go-get,github.com/cpuguy83/go-md2man); \
fi
varlink_generate: .gopathok cmd/podman/varlink/iopodman.go ## Generate varlink
diff --git a/rootless.md b/rootless.md
index 69de6db21..d8997a261 100644
--- a/rootless.md
+++ b/rootless.md
@@ -43,4 +43,4 @@ can easily fail
* Issues with higher UIDs can cause builds to fail
* If a build is attempting to use a UID that is not mapped into the user namespace mapping for a container, then builds will not be able to put the UID in an image.
* Making device nodes within a container fails, even when running --privileged.
- * Kernel does not allow non root user processes (processes without CAP_MKNOD) to create device nodes. If container needs to create device nodes, it must be run as root.
+ * The kernel does not allow non root user processes (processes without CAP_MKNOD) to create device nodes. If a container needs to create device nodes, it must be run as root.