From 3a22d8b12e5e6f15b9e7e4e907d7e20cfbba31d7 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Tue, 6 Aug 2024 17:17:53 +0100 Subject: [PATCH] Switch some sentences around in the packaging guide. --- docs/packaging.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/packaging.md b/docs/packaging.md index e0c1c36e..9c4781c9 100644 --- a/docs/packaging.md +++ b/docs/packaging.md @@ -14,10 +14,10 @@ Please don't ship preconfigured config files as they become outdated very quickl If you are performing a system-wide install you should use the `--system` option. This will automatically the install paths for use in a system-wide install. -When performing a system-wide build you may be asked to specify a user and group to run as. If you want to run as another user or if your package management system automatically handles changing file permissions then you may want to pass one of the following flag options to `./configure`. - You will probably want to set `INSPIRCD_DISABLE_RPATH=1` in the environment to avoid embedding [runtime paths](https://en.wikipedia.org/wiki/Rpath) into the compiled binaries. +When performing a system-wide build you may be asked to specify a user and group to run as. If you want to run as another user or if your package management system automatically handles changing file permissions then you may want to pass one of the following flag options to `./configure`. + ```sh # If always run as root. ./configure --gid 0 --uid 0 ...