chore(configure): add verbosity

added indentation to subcommand output of vendor `configure` invocation. This is
so to be easier to identify what is executed by the vendor routine
This commit is contained in:
Rodney, Tiara 2025-04-09 21:07:03 +02:00
parent 878bd13f03
commit d4b136e760
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
2 changed files with 8 additions and 2 deletions

5
configure vendored
View file

@ -1915,7 +1915,10 @@ git submodule update --init --remote --recursive
# archive into src/<whatever>.
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: initializing vendors..." >&5
printf "%s\n" "$as_me: initializing vendors..." >&6;}
sh -xc "cd vendor/html-theme-ref && sh ./configure"
# prefix for vendor subcommand output
sub_prefix="vendor/html-theme-ref: "
sh -c "cd vendor/html-theme-ref && sh ./configure | sed 's|^|$sub_prefix|'"
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: initializing python3 venv..." >&5
printf "%s\n" "$as_me: initializing python3 venv..." >&6;}

View file

@ -14,7 +14,10 @@ git submodule update --init --remote --recursive
# by storing the build package archive under vendor/ instead and untar the
# archive into src/<whatever>.
AC_MSG_NOTICE([initializing vendors...])
sh -xc "cd vendor/html-theme-ref && sh ./configure"
# prefix for vendor subcommand output
sub_prefix="vendor/html-theme-ref: "
sh -c "cd vendor/html-theme-ref && sh ./configure | sed 's|^|$sub_prefix|'"
AC_MSG_NOTICE([initializing python3 venv...])
python3 -m venv .venv