All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Makefile: Avoid non-portable GNU sed extension
@ 2022-05-05 14:42 Mark Kettenis
  2022-05-05 14:55 ` Heinrich Schuchardt
  0 siblings, 1 reply; 4+ messages in thread
From: Mark Kettenis @ 2022-05-05 14:42 UTC (permalink / raw)
  To: u-boot; +Cc: xypron.glpk, sjg, Mark Kettenis

Use [:space:] instead of \s and \S in regular expression that
determines the sandbox target architecture.  Fixes the build
failure on OpenBSD introduced with commit 4e65ca00f3a3
("efi_loader: bootmgr: add booting from removable media").

Fixes: f7691a6d73 ("sandbox: allow cross-compiling sandbox")
Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index ea80f00716..6eceeb35b4 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ include include/host_arch.h
 ifeq ("", "$(CROSS_COMPILE)")
   MK_ARCH="${shell uname -m}"
 else
-  MK_ARCH="${shell echo $(CROSS_COMPILE) | sed -n 's/^\s*\([^\/]*\/\)*\([^-]*\)-\S*/\2/p'}"
+  MK_ARCH="${shell echo $(CROSS_COMPILE) | sed -n 's/^[[:space:]]*\([^\/]*\/\)*\([^-]*\)-[^[:space:]]*/\2/p'}"
 endif
 unexport HOST_ARCH
 ifeq ("x86_64", $(MK_ARCH))
-- 
2.36.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Makefile: Avoid non-portable GNU sed extension
  2022-05-05 14:42 [PATCH] Makefile: Avoid non-portable GNU sed extension Mark Kettenis
@ 2022-05-05 14:55 ` Heinrich Schuchardt
  2022-05-05 16:58   ` Mark Kettenis
  0 siblings, 1 reply; 4+ messages in thread
From: Heinrich Schuchardt @ 2022-05-05 14:55 UTC (permalink / raw)
  To: Mark Kettenis; +Cc: sjg, u-boot

On 5/5/22 16:42, Mark Kettenis wrote:
> Use [:space:] instead of \s and \S in regular expression that
> determines the sandbox target architecture.  Fixes the build
> failure on OpenBSD introduced with commit 4e65ca00f3a3
> ("efi_loader: bootmgr: add booting from removable media").
>
> Fixes: f7691a6d73 ("sandbox: allow cross-compiling sandbox")
nits, use 12 first digits of hash

Fixes: f7691a6d736b ("sandbox: allow cross-compiling sandbox")

> Signed-off-by: Mark Kettenis <kettenis@openbsd.org>

Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>

> ---
>   Makefile | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Makefile b/Makefile
> index ea80f00716..6eceeb35b4 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -21,7 +21,7 @@ include include/host_arch.h
>   ifeq ("", "$(CROSS_COMPILE)")
>     MK_ARCH="${shell uname -m}"
>   else
> -  MK_ARCH="${shell echo $(CROSS_COMPILE) | sed -n 's/^\s*\([^\/]*\/\)*\([^-]*\)-\S*/\2/p'}"
> +  MK_ARCH="${shell echo $(CROSS_COMPILE) | sed -n 's/^[[:space:]]*\([^\/]*\/\)*\([^-]*\)-[^[:space:]]*/\2/p'}"
>   endif
>   unexport HOST_ARCH
>   ifeq ("x86_64", $(MK_ARCH))


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Makefile: Avoid non-portable GNU sed extension
  2022-05-05 14:55 ` Heinrich Schuchardt
@ 2022-05-05 16:58   ` Mark Kettenis
  2022-05-05 17:09     ` Heinrich Schuchardt
  0 siblings, 1 reply; 4+ messages in thread
From: Mark Kettenis @ 2022-05-05 16:58 UTC (permalink / raw)
  To: Heinrich Schuchardt; +Cc: kettenis, sjg, u-boot

> Date: Thu, 5 May 2022 16:55:24 +0200
> From: Heinrich Schuchardt <xypron.glpk@gmx.de>
> 
> On 5/5/22 16:42, Mark Kettenis wrote:
> > Use [:space:] instead of \s and \S in regular expression that
> > determines the sandbox target architecture.  Fixes the build
> > failure on OpenBSD introduced with commit 4e65ca00f3a3
> > ("efi_loader: bootmgr: add booting from removable media").
> >
> > Fixes: f7691a6d73 ("sandbox: allow cross-compiling sandbox")
> nits, use 12 first digits of hash
> 
> Fixes: f7691a6d736b ("sandbox: allow cross-compiling sandbox")

Hmm, checkpatch didn't catch that one.  Is this something I should
do a resubmit for?

> > Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
> 
> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
> 
> > ---
> >   Makefile | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/Makefile b/Makefile
> > index ea80f00716..6eceeb35b4 100644
> > --- a/Makefile
> > +++ b/Makefile
> > @@ -21,7 +21,7 @@ include include/host_arch.h
> >   ifeq ("", "$(CROSS_COMPILE)")
> >     MK_ARCH="${shell uname -m}"
> >   else
> > -  MK_ARCH="${shell echo $(CROSS_COMPILE) | sed -n 's/^\s*\([^\/]*\/\)*\([^-]*\)-\S*/\2/p'}"
> > +  MK_ARCH="${shell echo $(CROSS_COMPILE) | sed -n 's/^[[:space:]]*\([^\/]*\/\)*\([^-]*\)-[^[:space:]]*/\2/p'}"
> >   endif
> >   unexport HOST_ARCH
> >   ifeq ("x86_64", $(MK_ARCH))
> 
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Makefile: Avoid non-portable GNU sed extension
  2022-05-05 16:58   ` Mark Kettenis
@ 2022-05-05 17:09     ` Heinrich Schuchardt
  0 siblings, 0 replies; 4+ messages in thread
From: Heinrich Schuchardt @ 2022-05-05 17:09 UTC (permalink / raw)
  To: Mark Kettenis; +Cc: kettenis, sjg, u-boot



Am 5. Mai 2022 18:58:48 MESZ schrieb Mark Kettenis <mark.kettenis@xs4all.nl>:
>> Date: Thu, 5 May 2022 16:55:24 +0200
>> From: Heinrich Schuchardt <xypron.glpk@gmx.de>
>> 
>> On 5/5/22 16:42, Mark Kettenis wrote:
>> > Use [:space:] instead of \s and \S in regular expression that
>> > determines the sandbox target architecture.  Fixes the build
>> > failure on OpenBSD introduced with commit 4e65ca00f3a3
>> > ("efi_loader: bootmgr: add booting from removable media").
>> >
>> > Fixes: f7691a6d73 ("sandbox: allow cross-compiling sandbox")
>> nits, use 12 first digits of hash
>> 
>> Fixes: f7691a6d736b ("sandbox: allow cross-compiling sandbox")
>
>Hmm, checkpatch didn't catch that one.  Is this something I should
>do a resubmit for?

No. I will just consider it in my pull request. 

Best regards 

Heinrich 
>
>> > Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
>> 
>> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
>> 
>> > ---
>> >   Makefile | 2 +-
>> >   1 file changed, 1 insertion(+), 1 deletion(-)
>> >
>> > diff --git a/Makefile b/Makefile
>> > index ea80f00716..6eceeb35b4 100644
>> > --- a/Makefile
>> > +++ b/Makefile
>> > @@ -21,7 +21,7 @@ include include/host_arch.h
>> >   ifeq ("", "$(CROSS_COMPILE)")
>> >     MK_ARCH="${shell uname -m}"
>> >   else
>> > -  MK_ARCH="${shell echo $(CROSS_COMPILE) | sed -n 's/^\s*\([^\/]*\/\)*\([^-]*\)-\S*/\2/p'}"
>> > +  MK_ARCH="${shell echo $(CROSS_COMPILE) | sed -n 's/^[[:space:]]*\([^\/]*\/\)*\([^-]*\)-[^[:space:]]*/\2/p'}"
>> >   endif
>> >   unexport HOST_ARCH
>> >   ifeq ("x86_64", $(MK_ARCH))
>> 
>> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-05-05 17:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-05 14:42 [PATCH] Makefile: Avoid non-portable GNU sed extension Mark Kettenis
2022-05-05 14:55 ` Heinrich Schuchardt
2022-05-05 16:58   ` Mark Kettenis
2022-05-05 17:09     ` Heinrich Schuchardt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.