From 5d875c6c40e824454db34b7e2ccb3a6faaed4290 Mon Sep 17 00:00:00 2001 From: acinonyx Date: Wed, 6 Apr 2011 20:50:06 +0000 Subject: [package] block-mount: fsck.sh should only call pi_include() if dir /lib/functions/fsck exists. /etc/functions.sh:pi_include() checks if the argument exists and prints a warning if not. To prevent this warning if package block-mount is installed but not package e2fsprogs, the script should check if this directory exists before calling pi_include() A wrong patch to suppress this warning was previously posted with subject: [PATCH] Fix typo in name of to be included file Signed-off-by: Mark Vels git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26503 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/block-mount/files/fsck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/block-mount/files') diff --git a/package/block-mount/files/fsck.sh b/package/block-mount/files/fsck.sh index 3011160a4..9cba01daf 100644 --- a/package/block-mount/files/fsck.sh +++ b/package/block-mount/files/fsck.sh @@ -30,5 +30,5 @@ libmount_fsck() { libmount_known_fsck="" -pi_include /lib/functions/fsck +[ -d /lib/functions/fsck ] && pi_include /lib/functions/fsck -- cgit v1.2.3