1 Remove unnecessary runtime dependencies.
3 `knotc status configure` shows summary from the configure script,
4 but that contains also references like include paths.
5 Filter these at least in a crude way (whole lines).
8 @@ -766,5 +766,5 @@ result_msg_base=" Knot DNS $VERSION
10 -result_msg_esc=$(echo -n "$result_msg_base" | sed '$!s/$/\\n/' | tr -d '\n')
11 +result_msg_esc=$(echo -n "$result_msg_base" | grep -Fv "$NIX_STORE" | sed '$!s/$/\\n/' | tr -d '\n')
13 AC_DEFINE_UNQUOTED([CONFIGURE_SUMMARY],["$result_msg_esc"],[Configure summary])