diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2023-08-11 14:51:07 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2023-09-28 16:50:11 +0200 |
commit | eb8c3bd992e44af4fec64aab9b707e89ca57dcb9 (patch) | |
tree | d7ba92b7c991d396a91bc1248eb8abb397bebae5 /solenv | |
parent | b355d65ca56e886925f0eb17d70dc5d3e0312cb2 (diff) |
rpm packaging: don't add /usr/.build-id/* symlinks
the packages are meant to be fully relocatable, having that additional
dir makes that more tedious and the files don't add any benefit for
packages created via epm - they're meant to support parallel installable
debuginfo packages which are not provided by our way of packaging
Change-Id: I30284942846bae2f7030884cc15b02507e84e778
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155614
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/modules/installer/epmfile.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/epmfile.pm b/solenv/bin/modules/installer/epmfile.pm index 32104f551c9b..0b2caf1fff37 100644 --- a/solenv/bin/modules/installer/epmfile.pm +++ b/solenv/bin/modules/installer/epmfile.pm @@ -2045,7 +2045,7 @@ sub create_packages_without_epm $installer::globals::rpminfologged = 1; } - my $systemcall = "$rpmcommand -bb --define \"_unpackaged_files_terminate_build 0\" $specfilename --target $target $buildrootstring 2\>\&1 |"; + my $systemcall = "$rpmcommand -bb --define \"_unpackaged_files_terminate_build 0\" --define \"_build_id_links none\" $specfilename --target $target $buildrootstring 2\>\&1 |"; installer::logger::print_message( "... $systemcall ...\n" ); |