diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-11-25 06:55:42 -0600 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2024-12-13 13:00:19 -0600 |
commit | 0498302716bd79a0c142681f188535c4c973afc6 (patch) | |
tree | c3060dd72092ec73ca03abc2733be4996c785a90 /system/abuild/inode.patch | |
parent | 1a02c8595baf374d96a0d429638bc015b403fb03 (diff) | |
download | packages-0498302716bd79a0c142681f188535c4c973afc6.tar.gz packages-0498302716bd79a0c142681f188535c4c973afc6.tar.bz2 packages-0498302716bd79a0c142681f188535c4c973afc6.tar.xz packages-0498302716bd79a0c142681f188535c4c973afc6.zip |
system/abuild: Update to 3.5
Diffstat (limited to 'system/abuild/inode.patch')
-rw-r--r-- | system/abuild/inode.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/system/abuild/inode.patch b/system/abuild/inode.patch deleted file mode 100644 index a3a7cef09..000000000 --- a/system/abuild/inode.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 9969ec002c408b616714a99a6317c7f996965dd4 Mon Sep 17 00:00:00 2001 -From: Samuel Holland <samuel@sholland.org> -Date: Wed, 19 Jan 2022 02:35:19 -0600 -Subject: [PATCH] abuild: Correctly package files that fit in inode - -On filesystems such as XFS, abuild will skip small files and symlinks -because the file fits in an inode and shows a size of 0. - -Signed-off-by: A. Wilcox <AWilcox@Wilcox-Tech.com> -Acked-by: Zach van Rijn <me@zv.io> ---- - abuild.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/abuild.in b/abuild.in -index 6bb087a..3e83563 100644 ---- a/abuild.in -+++ b/abuild.in -@@ -927,7 +927,7 @@ prepare_metafiles() { - sync;; - esac - -- local size="$(du -sk | awk '{print $1 * 1024}')" -+ local size="$(du -sk --apparent-size | awk '{print $1 * 1024}')" - - if [ "$arch" != "$apkbuild_arch" ]; then - local msg="Split function set arch=\"$arch\" for $name, use subpackages=pkg:split:arch format instead" --- -2.32.0 (Apple Git-132) - |