BUGFIX: Removed generation of build-id during rpmbuild; build-id requires unnecessary sudo privileges during RPM installations

This commit is contained in:
Vanja Skuric 2019-11-02 20:51:30 +01:00
parent 322d20b1a1
commit ca57cacacd

View file

@ -184,7 +184,7 @@ rpm_build()
#rpmbuild --define "_topdir $buildBase" --dbpath $buildBase/rpmDB --clean -bb ./SPECS/$specFile "$@" #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 # 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 "$@"
} }
# #