at 24.11-pre 749 B view raw
1Shrink closure size by avoiding paths embedded from configure call. 2 3https://github.com/NixOS/nixpkgs/issues/175693 4diff --git a/daemon/buildinfo.c b/daemon/buildinfo.c 5index 56cde84fc..011e7579d 100644 6--- a/daemon/buildinfo.c 7+++ b/daemon/buildinfo.c 8@@ -1040,7 +1040,7 @@ static void build_info_set_status(BUILD_INFO_SLOT slot, bool status) { 9 10 __attribute__((constructor)) void initialize_build_info(void) { 11 build_info_set_value(BIB_PACKAGING_NETDATA_VERSION, program_version); 12- build_info_set_value(BIB_PACKAGING_CONFIGURE_OPTIONS, CONFIGURE_COMMAND); 13+ build_info_set_value(BIB_PACKAGING_CONFIGURE_OPTIONS, "REMOVED FOR CLOSURE SIZE REASONS"); 14 15 #ifdef COMPILED_FOR_LINUX 16 build_info_set_status(BIB_FEATURE_BUILT_FOR, true);