Skip to content
Snippets Groups Projects
Commit d8356828 authored by Stepan Salenikovich's avatar Stepan Salenikovich
Browse files

packaging: correct rpm syntax

The "%postun -p /sbin/ldconfig" is only valid when there is only
one %post and/or %postun command, for multiple commands the '-p'
should not be used, as documented here:
https://fedoraproject.org/wiki/Packaging:Guidelines#Shared_Libraries

Change-Id: I3b6c0ef1bad942987e75767ade8e0efe507a91aa
Tuleap: #1545
parent 7c73db8f
No related branches found
No related tags found
No related merge requests found
......@@ -205,11 +205,10 @@ DESTDIR=%{buildroot} make -C client-gnome/build install
%{_datadir}/dbus-1/interfaces/*
%post
-p /sbin/ldconfig
/sbin/ldconfig
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
%postun
-p /sbin/ldconfig
%postun -p /sbin/ldconfig
#for < f24 we have to update the schema explicitly
%if 0%{?fedora} < 24
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment