summary refs log tree commit diff
path: root/pkgs/tools/system/netdata/skip-CONFIGURE_COMMAND.patch
blob: fa7a0e7ad9c298c958e82ec579a0a6511ffa8a21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Shrink closure size by avoiding paths embedded from configure call.

https://github.com/NixOS/nixpkgs/issues/175693
--- a/daemon/buildinfo.c
+++ b/daemon/buildinfo.c
@@ -248,7 +248,9 @@ void print_build_info(void) {
     char *prebuilt_distro = NULL;
     get_install_type(&install_type, &prebuilt_arch, &prebuilt_distro);
 
-    printf("Configure options: %s\n", CONFIGURE_COMMAND);
+    // To minimize closure size do not persist configure options
+    // with build-time inputs.
+    printf("Configure options: REMOVED\n");
 
     if (install_type == NULL) {
         printf("Install type: unknown\n");