diff options
author | Thorsten Behrens <thorsten.behrens@allotropia.de> | 2023-11-05 00:34:46 +0100 |
---|---|---|
committer | Thorsten Behrens <thorsten.behrens@allotropia.de> | 2023-11-05 21:25:18 +0100 |
commit | 389def871853c885289627452f40b3ae0a8dabc8 (patch) | |
tree | 00f870253a2ab65adca65680a8116150d1f3eb8b /desktop | |
parent | d2b0c48ca0f0ba8ef3049ebcd5f93ae420c22c46 (diff) |
reprobuild: don't include build machine setup in binaries
The configure line can leak data from the building machine (path
names, level of parallelism etc), which leads to non-reproducible
build results.
Change-Id: I042afc3d7bad19e8e274147be2a9eb0abcf5436e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158871
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/lib/init.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 71eeabcbc380..3283cf7731e5 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -12,7 +12,6 @@ #include <svx/sdr/contact/viewcontact.hxx> #include <svx/svdpage.hxx> #include <svx/svdpagv.hxx> -#include <config_buildconfig.h> #include <config_cairo_rgba.h> #include <config_features.h> @@ -7243,8 +7242,7 @@ static char* lo_getVersionInfo(SAL_UNUSED_PARAMETER LibreOfficeKit* /*pThis*/) "\"ProductName\": \"%PRODUCTNAME\", " "\"ProductVersion\": \"%PRODUCTVERSION\", " "\"ProductExtension\": \"%PRODUCTEXTENSION\", " - "\"BuildId\": \"%BUILDID\", " - "\"BuildConfig\": \"" BUILDCONFIG "\" " + "\"BuildId\": \"%BUILDID\" " "}"_ustr)); } |