diff options
author | Omar Polo <op@omarpolo.com> | 2024-08-24 09:13:35 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2024-08-24 09:13:35 +0000 |
commit | fa26d02e198f33bacdc948896ceb7cbc383a6680 (patch) | |
tree | 9040eb52b210c4db1ddba40aa3840be89f73e9a7 | |
parent | 2f57c36f2f31fd95c6048a0efcfdd1da79d6e30c (diff) |
fix config.log args logging
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -68,6 +68,9 @@ if [ "$(uname || true)" = OpenBSD ]; then LIBTLS=system fi +# save the raw flags for later logging +configure_args="$@" + while [ $# -gt 0 ]; do key="${1%%=*}" val="${1#*=}" @@ -141,7 +144,7 @@ done exec 3> config.log echo "file config.log: writing..." -echo "running as ./configure $@" >&3 +echo "running as ./configure $configure_args" >&3 echo "on $(uname -a)" >&3 echo "" >&3 |