wok-tiny view busybox/stuff/busybox-git-ash.u @ rev 176

busybox: fix modules order
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 14 19:16:39 2021 +0000 (2021-07-14)
parents
children
line source
1 Some SliTaz scripts (cook) need that...
2 --- busybox-git/shell/ash.c
3 +++ busybox-git/shell/ash.c
4 @@ -12632,7 +12632,13 @@
5 if (strchr(name, '/'))
6 return name;
8 + /* IIRC standards do not say whether . is to be searched. Bash do it. */
9 + if (ENABLE_ASH_BASH_COMPAT) {
10 + fullname = name;
11 + goto try_cur_dir;
12 + }
13 while ((fullname = path_advance(&path, name)) != NULL) {
14 + try_cur_dir:
15 if ((stat(fullname, &statb) == 0) && S_ISREG(statb.st_mode)) {
16 /*
17 * Don't bother freeing here, since it will