Accepting request 841544 from devel:tools

OBS-URL: https://build.opensuse.org/request/show/841544
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/oprofile?expand=0&rev=54
This commit is contained in:
Dominique Leuenberger 2020-10-13 13:47:37 +00:00 committed by Git OBS Bridge
commit 44eac761e2
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 13 10:06:24 UTC 2020 - Jan Engelhardt <jengelh@inai.de>
- Do not suppress error text output from useradd.
-------------------------------------------------------------------
Wed Apr 8 12:11:10 UTC 2020 - Christophe Giboudeaux <christophe@krop.fr>

View File

@ -124,7 +124,7 @@ find . -type f -regex ".*\.c\|.*\.cpp\|.*\.h" -exec sed -i "s/__DATE__/${DATE}/g
%make_build
%install
make DESTDIR=%{buildroot} htmldir=%{_docdir}/oprofile install
%make_install htmldir=%{_docdir}/oprofile
rm -f %{buildroot}%{_libdir}/oprofile/libopagent.*a
# Hardlink duplicate files automatically (from package fdupes):
# It doesn't save much, but it keeps rpmlint from breaking the package build.
@ -132,11 +132,11 @@ rm -f %{buildroot}%{_libdir}/oprofile/libopagent.*a
%pre
getent group oprofile >/dev/null || \
%{_sbindir}/groupadd -r oprofile 2>/dev/null
%{_sbindir}/groupadd -r oprofile
getent passwd oprofile >/dev/null || \
%{_sbindir}/useradd -r -g oprofile -d %{_localstatedir}/lib/empty \
-s /bin/false -c "Special user account to be used by OProfile" \
oprofile 2>/dev/null
oprofile
%post -n libopagent1 -p /sbin/ldconfig
%postun -n libopagent1 -p /sbin/ldconfig