On Wed, 12 Sep 2018 at 13:06, <[email protected]> wrote:

> Notification time stamped 2018-09-12 11:01:03 UTC
>
> From 20e576638ca6bbc6583bb357353a6c66760fe457 Mon Sep 17 00:00:00 2001
> From: Miroslav Lichvar <[email protected]>
> Date: Sep 12 2018 11:00:41 +0000
> Subject: add man page symlinks for sb, sx, rb, rx programs (#1611501)
>
>
> ---
>
> diff --git a/lrzsz.spec b/lrzsz.spec
> index a751bba..c47cbb1 100644
> --- a/lrzsz.spec
> +++ b/lrzsz.spec
> @@ -37,6 +37,9 @@ make %{?_smp_mflags}
>
>  %install
>  %makeinstall
> +for m in rb rx; do ln -s rz.1 %{buildroot}%{_mandir}/man1/$m.1; done
> +for m in sb sx; do ln -s sz.1 %{buildroot}%{_mandir}/man1/$m.1; done
> +
>  %find_lang %{name}
>

Just FTR: This kind of modifications are wrong.
After compressing {rs}z.1 in %post it will be {rs}z.1.gz and created
symlinks will be pointing nowhere.
As well in such situation it should be not used symlinks to *gz files as
when compression of the man pages method may change in such situations
symlinks will be pointing to nowhere.
Only correct method for above is use roff link files like:

+for m in rb rx; do echo ".so man1/rz.1" > %{buildroot}%{_mandir}/man1/$m.1;
done
+for m in sb sx; do echo ".so man1/sz.1" > %{buildroot}%{_mandir}/man1/$m.1;
done

kloczek
-- 
Tomasz Kłoczko | LinkedIn: http://lnkd.in/FXPWxH
_______________________________________________
devel mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/[email protected]

Reply via email to