mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] glibc: fix typo in Y2038 check
@ 2023-06-08  5:22 Ladislav Michl
  2023-06-08 12:57 ` Michael Olbrich
  2023-06-21  8:51 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 2 replies; 3+ messages in thread
From: Ladislav Michl @ 2023-06-08  5:22 UTC (permalink / raw)
  To: ptxdist

From: Ladislav Michl <ladis@linux-mips.org>

Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
 Note: The previous commit message had a typo as well...

 rules/glibc.make | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rules/glibc.make b/rules/glibc.make
index 0f54bb181..a550f4b92 100644
--- a/rules/glibc.make
+++ b/rules/glibc.make
@@ -32,7 +32,7 @@ ifdef PTXCONF_GLIBC_Y2038
 	@echo Checking Y2038 support...
 	@echo 'static_assert(sizeof(time_t) == 8, "y2038");' | \
 		$(CROSS_CC) -c -x c -include sys/types.h -include assert.h - &>/dev/null || \
-		ptxd_bailout "PTXCONF_GLIBC_Y2038 is enabled but the toolchain has no Y2028 support!"
+		ptxd_bailout "PTXCONF_GLIBC_Y2038 is enabled but the toolchain has no Y2038 support!"
 endif
 	@$(call touch)
 
-- 
2.32.0




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

* Re: [ptxdist] [PATCH] glibc: fix typo in Y2038 check
  2023-06-08  5:22 [ptxdist] [PATCH] glibc: fix typo in Y2038 check Ladislav Michl
@ 2023-06-08 12:57 ` Michael Olbrich
  2023-06-21  8:51 ` [ptxdist] [APPLIED] " Michael Olbrich
  1 sibling, 0 replies; 3+ messages in thread
From: Michael Olbrich @ 2023-06-08 12:57 UTC (permalink / raw)
  To: Ladislav Michl; +Cc: ptxdist

On Thu, Jun 08, 2023 at 07:22:50AM +0200, Ladislav Michl wrote:
> From: Ladislav Michl <ladis@linux-mips.org>
> 
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> ---
>  Note: The previous commit message had a typo as well...
> 
>  rules/glibc.make | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/rules/glibc.make b/rules/glibc.make
> index 0f54bb181..a550f4b92 100644
> --- a/rules/glibc.make
> +++ b/rules/glibc.make
> @@ -32,7 +32,7 @@ ifdef PTXCONF_GLIBC_Y2038
>  	@echo Checking Y2038 support...
>  	@echo 'static_assert(sizeof(time_t) == 8, "y2038");' | \
>  		$(CROSS_CC) -c -x c -include sys/types.h -include assert.h - &>/dev/null || \
> -		ptxd_bailout "PTXCONF_GLIBC_Y2038 is enabled but the toolchain has no Y2028 support!"
> +		ptxd_bailout "PTXCONF_GLIBC_Y2038 is enabled but the toolchain has no Y2038 support!"

Right, luckily we do have a few more years... :-)

Michael

>  endif
>  	@$(call touch)
>  
> -- 
> 2.32.0
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



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

* Re: [ptxdist] [APPLIED] glibc: fix typo in Y2038 check
  2023-06-08  5:22 [ptxdist] [PATCH] glibc: fix typo in Y2038 check Ladislav Michl
  2023-06-08 12:57 ` Michael Olbrich
@ 2023-06-21  8:51 ` Michael Olbrich
  1 sibling, 0 replies; 3+ messages in thread
From: Michael Olbrich @ 2023-06-21  8:51 UTC (permalink / raw)
  To: ptxdist; +Cc: Ladislav Michl

Thanks, applied as 89d220a066b784c167efffd6f10e82a526840f65.

Michael

[sent from post-receive hook]

On Wed, 21 Jun 2023 10:51:09 +0200, Ladislav Michl <oss-lists@triops.cz> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <ZIFlqkbvHcmzBsoe@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/glibc.make b/rules/glibc.make
> index 0f54bb181655..a550f4b9206a 100644
> --- a/rules/glibc.make
> +++ b/rules/glibc.make
> @@ -32,7 +32,7 @@ ifdef PTXCONF_GLIBC_Y2038
>  	@echo Checking Y2038 support...
>  	@echo 'static_assert(sizeof(time_t) == 8, "y2038");' | \
>  		$(CROSS_CC) -c -x c -include sys/types.h -include assert.h - &>/dev/null || \
> -		ptxd_bailout "PTXCONF_GLIBC_Y2038 is enabled but the toolchain has no Y2028 support!"
> +		ptxd_bailout "PTXCONF_GLIBC_Y2038 is enabled but the toolchain has no Y2038 support!"
>  endif
>  	@$(call touch)
>  



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

end of thread, other threads:[~2023-06-21  8:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-08  5:22 [ptxdist] [PATCH] glibc: fix typo in Y2038 check Ladislav Michl
2023-06-08 12:57 ` Michael Olbrich
2023-06-21  8:51 ` [ptxdist] [APPLIED] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox