From ca57cacacda8257d3e950ee109845abacb25884f Mon Sep 17 00:00:00 2001 From: Vanja Skuric Date: Sat, 2 Nov 2019 20:51:30 +0100 Subject: [PATCH] BUGFIX: Removed generation of build-id during rpmbuild; build-id requires unnecessary sudo privileges during RPM installations --- ThirdParty/tools/makeThirdPartyFunctionsForRPM | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ThirdParty/tools/makeThirdPartyFunctionsForRPM b/ThirdParty/tools/makeThirdPartyFunctionsForRPM index 9430685b8..8ce88cc15 100755 --- a/ThirdParty/tools/makeThirdPartyFunctionsForRPM +++ b/ThirdParty/tools/makeThirdPartyFunctionsForRPM @@ -184,7 +184,7 @@ rpm_build() #rpmbuild --define "_topdir $buildBase" --dbpath $buildBase/rpmDB --clean -bb ./SPECS/$specFile "$@" # # Let's keep the compilation directory alive for now in order to facilitate postmortems of failed compilations - rpmbuild --define "_topdir $buildBase" --dbpath $buildBase/rpmDB -bb ./SPECS/$specFile "$@" + rpmbuild --define "_build_id_links none" --define "_topdir $buildBase" --dbpath $buildBase/rpmDB -bb ./SPECS/$specFile "$@" } #