diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2019-10-27 08:41:46 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-10-30 01:03:46 +0100 |
commit | 0272fca993718460bf7ecb7fdc3ca7dad1c7e6cd (patch) | |
tree | fdc652bd645eb30352aaddb7f956a4e19bf94c31 /scripts/Makefile.am | |
parent | a745d97c174ef1d85649b2a8ad7ca22e3dea9e58 (diff) | |
download | pacman-0272fca993718460bf7ecb7fdc3ca7dad1c7e6cd.tar.gz pacman-0272fca993718460bf7ecb7fdc3ca7dad1c7e6cd.tar.xz |
makepkg: do not count hard links multiple times when calculating pkg size
Exclude files with hardlinks when cat'ing all the files, and do a second
run to look at each file with hardlinks, keep track of the ones we've
already operated on, and only cat each inode once. Then use "wc -c" to get
the size of all (deduplicated) files the same way we were already doing.
Original-patch-by: Ronan Pigott <rpigott@berkeley.edu>
Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts/Makefile.am')
-rw-r--r-- | scripts/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am index 88e9612d..63d09767 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -127,6 +127,7 @@ LIBMAKEPKG_IN = \ libmakepkg/util.sh \ libmakepkg/util/compress.sh \ libmakepkg/util/config.sh \ + libmakepkg/util/dirsize.sh \ libmakepkg/util/error.sh \ libmakepkg/util/message.sh \ libmakepkg/util/option.sh \ |