# HG changeset patch # User Pascal Bellard # Date 1500742504 -7200 # Node ID 08bb2369e4d6107f008763b2510f342902215327 # Parent ee7f2d5d32f98a8a4d80949c7550ad1f901850b0 Up busybox (1.27.1) diff -r ee7f2d5d32f9 -r 08bb2369e4d6 busybox-boot/receipt --- a/busybox-boot/receipt Sat Jul 22 12:34:30 2017 +0200 +++ b/busybox-boot/receipt Sat Jul 22 18:55:04 2017 +0200 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="busybox-boot" -VERSION="1.26.2" +VERSION="1.27.1" CATEGORY="base-system" SHORT_DESC="Many common UNIX utilities for core-5in1/boot flavor." MAINTAINER="pascal.bellard@slitaz.org" diff -r ee7f2d5d32f9 -r 08bb2369e4d6 busybox-pam/receipt --- a/busybox-pam/receipt Sat Jul 22 12:34:30 2017 +0200 +++ b/busybox-pam/receipt Sat Jul 22 18:55:04 2017 +0200 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="busybox-pam" -VERSION="1.26.2" +VERSION="1.27.1" CATEGORY="base-system" SHORT_DESC="Busybox combines tiny versions of many common UNIX utilities." MAINTAINER="pascal.bellard@slitaz.org" diff -r ee7f2d5d32f9 -r 08bb2369e4d6 busybox-static/receipt --- a/busybox-static/receipt Sat Jul 22 12:34:30 2017 +0200 +++ b/busybox-static/receipt Sat Jul 22 18:55:04 2017 +0200 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="busybox-static" -VERSION="1.26.2" +VERSION="1.27.1" CATEGORY="base-system" SHORT_DESC="Busybox combines tiny versions of many common UNIX utilities." MAINTAINER="pascal.bellard@slitaz.org" diff -r ee7f2d5d32f9 -r 08bb2369e4d6 busybox/receipt --- a/busybox/receipt Sat Jul 22 12:34:30 2017 +0200 +++ b/busybox/receipt Sat Jul 22 18:55:04 2017 +0200 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="busybox" -VERSION="1.26.2" +VERSION="1.27.1" CATEGORY="base-system" SHORT_DESC="Busybox combines tiny versions of many common UNIX utilities." MAINTAINER="pascal.bellard@slitaz.org" @@ -43,11 +43,10 @@ losetup.u fbvnc.u cpio.u -ftpd.u shutdown.u scriptreplay.u -bug9471.u mkfs_vfat.u +ash.u EOT cp $stuff/$PACKAGE-${VERSION%.*}.config .config } diff -r ee7f2d5d32f9 -r 08bb2369e4d6 busybox/stuff/busybox-1.27-ash.u --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/busybox/stuff/busybox-1.27-ash.u Sat Jul 22 18:55:04 2017 +0200 @@ -0,0 +1,22 @@ +Some SliTaz scripts (cook) need that... +--- busybox-1.27/shell/ash.c ++++ busybox-1.27/shell/ash.c +@@ -12632,7 +12632,8 @@ + if (strchr(name, '/')) + return name; + +- while ((fullname = path_advance(&path, name)) != NULL) { ++ fullname = name; /* search in . first */ ++ do { + if ((stat(fullname, &statb) == 0) && S_ISREG(statb.st_mode)) { + /* + * Don't bother freeing here, since it will +@@ -12642,7 +12643,7 @@ + } + if (fullname != name) + stunalloc(fullname); +- } ++ } while ((fullname = path_advance(&path, name)) != NULL); + + /* not found in the PATH */ + ash_msg_and_raise_error("%s: not found", name); diff -r ee7f2d5d32f9 -r 08bb2369e4d6 ssfs-busybox/receipt --- a/ssfs-busybox/receipt Sat Jul 22 12:34:30 2017 +0200 +++ b/ssfs-busybox/receipt Sat Jul 22 18:55:04 2017 +0200 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="ssfs-busybox" -VERSION="1.26.2" +VERSION="1.27.1" CATEGORY="base-system" SHORT_DESC="Busybox for Ssfs virtual disk minimal chroot." MAINTAINER="pankso@slitaz.org"