nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 13 lines 633 B view raw
1Remove unnecessary runtime dependencies. 2 3`knotc status configure` shows summary from the configure script, 4but that contains also references like include paths. 5Filter these at least in a crude way (whole lines). 6--- a/configure.ac 7+++ b/configure.ac 8@@ -788,5 +788,5 @@ result_msg_base=" 9-result_msg_esc=$(echo -n " Configure:$filtered_config_params\n$result_msg_base" | sed '$!s/$/\\n/' | tr -d '\n') 10+result_msg_esc=$(echo -n " Configure:$filtered_config_params\n$result_msg_base" | grep -Fv "$NIX_STORE" | sed '$!s/$/\\n/' | tr -d '\n') 11 12 AC_DEFINE_UNQUOTED([CONFIGURE_SUMMARY],["$result_msg_esc"],[Configure summary]) 13