biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / dns / knot-dns / runtime-deps.patch
blob19fc9cd07b18be6aa3058c200bab1076737e641a
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).
6 --- a/configure.ac
7 +++ b/configure.ac
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])