From ab87decf6a53cde20fc95d1b1e6aae9f548fc2f5 Mon Sep 17 00:00:00 2001 From: Miro HronĨok Date: Sep 25 2019 21:57:16 +0000 Subject: Replace symbolic links examples not to have /bin but /usr/bin Fixes https://pagure.io/packaging-committee/issue/928 --- diff --git a/guidelines/modules/ROOT/pages/index.adoc b/guidelines/modules/ROOT/pages/index.adoc index 0d69719..099ecbe 100644 --- a/guidelines/modules/ROOT/pages/index.adoc +++ b/guidelines/modules/ROOT/pages/index.adoc @@ -1552,7 +1552,7 @@ There are two ways of making a symlink, either as a relative link or an absolute A relative symlink is a symlink which points to a file or directory relative to the position of the symlink. For example, this command would create a relative symlink: .... -ln -s ../..%{_bindir}/foo %{buildroot}/bin/foo +ln -s ../..%{_bindir}/foo %{buildroot}%{_bindir}/bar .... Pros: @@ -1571,7 +1571,7 @@ Cons: An absolute symlink is a symlink which points to an absolute file or directory path. For example, this command would create an absolute symlink: .... -ln -s %{_bindir}/foo %{buildroot}/bin/foo +ln -s %{_bindir}/foo %{buildroot}%{_bindir}/bar .... Pros: