aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiraty <mail@piraty.dev>2024-05-28 20:54:14 +0000
committerPiraty <mail@piraty.dev>2024-05-28 20:54:14 +0000
commit7b2e820b9823c7337f9c244a6b927b27125725fe (patch)
treeefd5b6408b2537f0fa8b3619a58ec5a84800f5fe
parentb0858186348b56f4cece3b095dc6b3c0ff4a6433 (diff)
downloadvoid-packages-7b2e820b9823c7337f9c244a6b927b27125725fe.tar
void-packages-7b2e820b9823c7337f9c244a6b927b27125725fe.tar.gz
void-packages-7b2e820b9823c7337f9c244a6b927b27125725fe.tar.bz2
void-packages-7b2e820b9823c7337f9c244a6b927b27125725fe.tar.lz
void-packages-7b2e820b9823c7337f9c244a6b927b27125725fe.tar.xz
void-packages-7b2e820b9823c7337f9c244a6b927b27125725fe.tar.zst
void-packages-7b2e820b9823c7337f9c244a6b927b27125725fe.zip
dnsdist: proberly check y2k38 restrictions for musl1.1
-rw-r--r--srcpkgs/dnsdist/template4
1 files 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