diff options
author | Tianling Shen <cnsztl@immortalwrt.org> | 2023-05-16 17:17:06 +0800 |
---|---|---|
committer | Tianling Shen <cnsztl@gmail.com> | 2023-05-17 13:43:13 +0800 |
commit | 6c6d8fe5420a1fc88797f406e4483d743b87ac60 (patch) | |
tree | 1979feb747dde2a7eae92e51cc27c40616de2f4e /utils/acl/Makefile | |
parent | a5c2eececb64037a96163c62d41135b893f36ba8 (diff) |
acl: fix compilation with musl 1.2.4
musl 1.2.4 deprecated legacy "LFS64" ("large file support") interfaces so
just having _GNU_SOURCE defined is not enough anymore.
Backport an upstream fix to replace these old functions.
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
Diffstat (limited to 'utils/acl/Makefile')
-rw-r--r-- | utils/acl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/acl/Makefile b/utils/acl/Makefile index 8fa85ddc2..69caa54ed 100644 --- a/utils/acl/Makefile +++ b/utils/acl/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=acl PKG_VERSION:=2.3.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://git.savannah.nongnu.org/cgit/acl.git/snapshot |