summaryrefslogtreecommitdiff
path: root/dev-libs/libite/files/libite-2.0.0-fix-which-path.patch
blob: 301c437158909e193c9cfc5005fe51bd1607de49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
diff --git a/tests/which.c b/tests/which.c
index 46dcccf..cda57c6 100644
--- a/tests/which.c
+++ b/tests/which.c
@@ -11,13 +11,13 @@ int main(void)
 	int result = 0;
 	size_t i;
 	struct tc test[] = {
-		{ "ls",          1 },
-		{ "free",        1 },
-		{ "modinfo",     1 },
-		{ "useradd",     1 },
-		{ "/bin/which",  1 },
-		{ "/bin/ps aux", 1 },
-		{ "/etc/passwd", 0 },
+		{ "ls",             1 },
+		{ "free",           1 },
+		{ "modinfo",        1 },
+		{ "useradd",        1 },
+		{ "/usr/bin/which", 1 },
+		{ "/bin/ps aux",    1 },
+		{ "/etc/passwd",    0 },
 		{ NULL, 0 }
 	};