~ruther/guix-local

ref: b0451b3e42e961648ad1ccdc4e1ce4f0d7fef3f4 guix-local/gnu/packages/patches/knot-remove-runtime-deps.patch -rw-r--r-- 732 bytes
b0451b3e — jgart gnu: sbcl-definitions-systems: Update to 3.0. a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Following patch is imported from nixpkgs:

source: https://github.com/NixOS/nixpkgs/pull/338995

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
@@ -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')
 
 AC_DEFINE_UNQUOTED([CONFIGURE_SUMMARY],["$result_msg_esc"],[Configure summary])