From bf2f2229bb108a7bdd39326eb4e886e2f47df960 Mon Sep 17 00:00:00 2001 From: Michael Tokarev Date: Thu, 23 Jan 2014 14:41:53 +0100 Subject: testsuite: fix last "which" change In commit afa63b2dcdc9b9 I replaced `type -p' with `command -pv'. But actually it is wrong, the right substitution is `command -v'. We need to find our busybox which is in the first directory in $PATH, so `command -p' should not be used because it uses default PATH, not current value of PATH where our busybox binary resides. Signed-off-by: Michael Tokarev Signed-off-by: Denys Vlasenko --- testsuite/which/which-uses-default-path | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testsuite/which') diff --git a/testsuite/which/which-uses-default-path b/testsuite/which/which-uses-default-path index 349583dcc..92b6018c9 100644 --- a/testsuite/which/which-uses-default-path +++ b/testsuite/which/which-uses-default-path @@ -1,4 +1,4 @@ -BUSYBOX=$(command -pv busybox) +BUSYBOX=$(command -v busybox) SAVED_PATH=$PATH unset PATH $BUSYBOX which ls -- cgit v1.2.3