~alpine/devel

find -name "*" instead of find -name *. v1 PROPOSED

Daniel Beecham: 1
 find -name "*" instead of find -name *.

 1 files changed, 2 insertions(+), 2 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/devel/patches/327/mbox | git am -3
Learn more about email & git

[alpine-devel] [PATCH] find -name "*" instead of find -name *. Export this patch

---
 main/syslinux/update-extlinux | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/main/syslinux/update-extlinux b/main/syslinux/update-extlinux
index dafe8bb..d96713a 100755
--- a/main/syslinux/update-extlinux
+++ b/main/syslinux/update-extlinux
@@ -92,7 +92,7 @@ echo "TIMEOUT $rtimeout" >> $conf.new

lst=0
if [ -f "/boot/xen.gz" ]; then
	for kernel in $(find /boot -name vmlinuz-* -type f); do
	for kernel in $(find /boot -name "vmlinuz-*" -type f); do
		tag=$(basename $kernel | cut -b9-)
		everbose "Found Xen hypervisor: /boot/xen.gz, kernel: $kernel"

@@ -118,7 +118,7 @@ if [ -f "/boot/xen.gz" ]; then
	done
fi

for kernel in $(find /boot -name vmlinuz-* -type f); do
for kernel in $(find /boot -name "vmlinuz-*" -type f); do
	tag=$(basename $kernel | cut -b9-)
	everbose "Found kernel: $kernel"

-- 
1.7.11.2



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---