~alpine/devel

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
1

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

Daniel Beecham <daniel@lunix.se>
Details
Message ID
<1342963051-3743-1-git-send-email-daniel@lunix.se>
Sender timestamp
1342963051
DKIM signature
missing
Download raw message
Patch: +2 -2
---
 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
---
Natanael Copa <ncopa@alpinelinux.org>
Details
Message ID
<20120725111505.5a228a5e@ncopa-desktop.nor.wtbts.net>
In-Reply-To
<1342963051-3743-1-git-send-email-daniel@lunix.se> (view parent)
Sender timestamp
1343207705
DKIM signature
missing
Download raw message
On Sun, 22 Jul 2012 15:17:31 +0200
Daniel Beecham <daniel@lunix.se> wrote:

> ---
>  main/syslinux/update-extlinux | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

I almost forgot this. Sorry.

Applied with a fixed commit message and updated checksums in APKBUILD.

Thanks!

-nc


---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Reply to thread Export thread (mbox)