You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building the rpm on rhel6.5, the resulting rpm has a conflict on /usr/share/info/dir file.
The solution is to remove this file after make install:
%{__rm} -f %{buildroot}/usr/share/info/dir
And use the following post scriptlets:
%post
/sbin/ldconfig
/sbin/install-info /usr/share/info/DevIL_manual.info.gz /usr/share/info/dir 2> /dev/null || :
Hi,
When building the rpm on rhel6.5, the resulting rpm has a conflict on /usr/share/info/dir file.
The solution is to remove this file after make install:
%{__rm} -f %{buildroot}/usr/share/info/dir
And use the following post scriptlets:
%post
/sbin/ldconfig
/sbin/install-info /usr/share/info/DevIL_manual.info.gz /usr/share/info/dir 2> /dev/null || :
%postun
/sbin/ldconfig
/sbin/install-info --delete /usr/share/info/DevIL_manual.info.gz /usr/share/info/dir 2> /dev/null || :
The text was updated successfully, but these errors were encountered: