2020-09-25 04:45:31 +00:00
|
|
|
Remove unnecessary runtime dependencies.
|
|
|
|
|
|
|
|
`knotc status configure` shows summary from the configure script,
|
|
|
|
but that contains also references like include paths.
|
|
|
|
Filter these at least in a crude way (whole lines).
|
|
|
|
--- a/configure.ac
|
|
|
|
+++ b/configure.ac
|
2024-09-19 14:19:46 +00:00
|
|
|
@@ -788,5 +788,5 @@ result_msg_base="
|
|
|
|
-result_msg_esc=$(echo -n " Configure:$filtered_config_params\n$result_msg_base" | sed '$!s/$/\\n/' | tr -d '\n')
|
|
|
|
+result_msg_esc=$(echo -n " Configure:$filtered_config_params\n$result_msg_base" | grep -Fv "$NIX_STORE" | sed '$!s/$/\\n/' | tr -d '\n')
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
AC_DEFINE_UNQUOTED([CONFIGURE_SUMMARY],["$result_msg_esc"],[Configure summary])
|
|
|
|
|