aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorslashdd <[email protected]>2016-09-20 13:07:58 -0400
committerBrian Behlendorf <[email protected]>2016-09-20 10:07:58 -0700
commit792517389fad5c495a2738b61c2e9c65dedaaa9a (patch)
tree5eef2ac0ecc1db47b3f11ec4ba12a97b6427e1b7 /config
parent25e2ab16be74cb37934e6736a1dc10fd50a00c56 (diff)
Change /etc/mtab to /proc/self/mounts
Fix misleading error message: "The /dev/zfs device is missing and must be created.", if /etc/mtab is missing. Reviewed-by: Richard Laager <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Eric Desrochers <[email protected]> Closes #4680 Closes #5029
Diffstat (limited to 'config')
-rw-r--r--config/user-commands.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/config/user-commands.m4 b/config/user-commands.m4
index 58633b4a0..6e9c3d103 100644
--- a/config/user-commands.m4
+++ b/config/user-commands.m4
@@ -127,7 +127,7 @@ AC_DEFUN([ZFS_AC_CONFIG_USER_COMMANDS_LINUX], [
PAGESIZE=$($GETCONF PAGESIZE)
AC_SUBST(PAGESIZE)
- MNTTAB=/etc/mtab
+ MNTTAB=/proc/self/mounts
AC_SUBST(MNTTAB)
])