diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-18 15:27:27 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-19 15:50:45 -0400 |
commit | 0035cc4ff492cab91adeb49d0c577fe5982064bd (patch) | |
tree | 6fcd6b48b00ceb4ae696a5a3d9d03e23c9676a70 /config/pkg.mk | |
parent | d7d5e1c474e4e110172b7180de9c41e5ebbf93f6 (diff) | |
download | bfs-0035cc4ff492cab91adeb49d0c577fe5982064bd.tar.xz |
config: Check for program_invocation_short_name
This lets us pick it up on musl too, since there's no __MUSL__ macro.
Link: https://wiki.musl-libc.org/faq#Q:-Why-is-there-no-%3Ccode%3E__MUSL__%3C/code%3E-macro?
Diffstat (limited to 'config/pkg.mk')
-rw-r--r-- | config/pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/pkg.mk b/config/pkg.mk index 6f868be..fafe562 100644 --- a/config/pkg.mk +++ b/config/pkg.mk @@ -17,7 +17,7 @@ default:: @if [ "${IS_V}" ]; then \ cat ${TARGET}; \ elif grep -q PKGS ${TARGET}; then \ - printf '[ GEN] %-18s ✔\n' ${SHORT}; \ + printf '[ GEN] %-${MSG_WIDTH}s ✔\n' ${SHORT}; \ else \ - printf '[ GEN] %-18s ✘\n' ${SHORT}; \ + printf '[ GEN] %-${MSG_WIDTH}s ✘\n' ${SHORT}; \ fi |