diff options
Diffstat (limited to 'abuild.in')
-rw-r--r-- | abuild.in | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1253,7 +1253,7 @@ scan_pkgconfig_depends() { # read size in bytes from stdin and show as human readable human_size() { awk '{ split("B KB MB GB TB PB", type) - for(i=5; y < 1; i--) + for(i=5; y < 1 && $1 > 0; i--) y = $1 / (2**(10*i)) printf("%.1f %s\n", y, type[i+2]) }' } @@ -2209,4 +2209,3 @@ for i in $install_after; do done cleanup - |