803438a62a
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/texinfo#c543bfe93d8d1c3cf19c3c8298da2e18064ebb28
16 lines
390 B
Plaintext
16 lines
390 B
Plaintext
%info_requires \
|
|
Requires(post): /sbin/install-info \
|
|
Requires(preun): /sbin/install-info
|
|
|
|
%info_post() \
|
|
if [ -f %{_infodir}/%1 ]; then # --excludedocs? \
|
|
/sbin/install-info %{_infodir}/%1 %{_infodir}/dir || : \
|
|
fi
|
|
|
|
%info_preun() \
|
|
if [ $1 == 0 ]; then \
|
|
if [ -f %{_infodir}/%1 ]; then # --excludedocs? \
|
|
/sbin/install-info --delete %{_infodir}/%1 %{_infodir}/dir || : \
|
|
fi \
|
|
fi
|