From 7b2e820b9823c7337f9c244a6b927b27125725fe Mon Sep 17 00:00:00 2001 From: Piraty Date: Tue, 28 May 2024 22:54:14 +0200 Subject: [PATCH] dnsdist: proberly check y2k38 restrictions for musl1.1 --- srcpkgs/dnsdist/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/dnsdist/template b/srcpkgs/dnsdist/template index e9401990199..8b6c9a089ec 100644 --- a/srcpkgs/dnsdist/template +++ b/srcpkgs/dnsdist/template @@ -22,8 +22,8 @@ checksum=16bab15cad9245571806398a8e4a5dc32a92b6bb60e617c12fe958c945889c7c system_accounts="_dnsdist" -if [ "$XBPS_TARGET_WORDSIZE" = 32 ]; then - # This can be removed once MUSL is updated to 1.2.x +# (y2k38) This can be removed once musl is updated to 1.2.x +if [ "$XBPS_TARGET_LIBC" = "musl" ] && [ "$XBPS_TARGET_WORDSIZE" = "32" ]; then broken="no y2038 support" fi