summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2013-08-27 23:51:31 +0200
committerDave Reisner <dreisner@archlinux.org>2013-08-28 13:37:50 +0200
commit60475ade761e85ef2c1b0f2daef569b134d44fc0 (patch)
tree4c679526df3a1269dced67b80cc59f44b9393818 /install
parent31e5439dd5a78d413a77a79ffa8179815a02570c (diff)
downloadmkinitcpio-60475ade761e85ef2c1b0f2daef569b134d44fc0.tar.gz
mkinitcpio-60475ade761e85ef2c1b0f2daef569b134d44fc0.tar.xz
rely on libmount defaults for file locations
Using --tab-file for findmnt calls is redundant if we can rely on the defaults. Sanitize the environment from any LIBMOUNT_* variables so that we can be sure of what file we're reading. Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'install')
-rw-r--r--install/autodetect2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/autodetect b/install/autodetect
index 3710e68..b3db536 100644
--- a/install/autodetect
+++ b/install/autodetect
@@ -37,7 +37,7 @@ build() {
fi
# detect filesystem for separate /usr
- if usrfstype=$(findmnt -snero fstype --tab-file '/etc/fstab' -T '/usr'); then
+ if usrfstype=$(findmnt -snero fstype -T '/usr'); then
add_if_avail "$usrfstype"
fi