diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2022-02-27 16:20:43 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2022-02-27 16:23:48 +0100 |
commit | 0df603bfca85e859bdf21ffe1b32ce897caf8b7d (patch) | |
tree | 1546647861f20d9ca7fa98acd00544f788247482 /doc/build.md | |
parent | 3ae6de89c5fc18b5b133f91ef0955c8eec8546f4 (diff) |
Documentation: Replace `foo=~/bar` with `foo=$HOME/bar`.
POSIX doesn't mandate expansion of the former.
Diffstat (limited to 'doc/build.md')
-rw-r--r-- | doc/build.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/build.md b/doc/build.md index 1936c13..b40760e 100644 --- a/doc/build.md +++ b/doc/build.md @@ -79,11 +79,11 @@ By default `` `make install` `` installs [`interimap`(1)] under can be used in order to perform the (un)installation as an unprivileged user. For instance - $ install -m0700 -vd "${XDG_DATA_HOME:-~/.local/share}/interimap" + $ install -m0700 -vd ${XDG_DATA_HOME:-~/.local/share}/interimap $ make install-nodoc \ - prefix=~/.local \ - sitelib="${XDG_DATA_HOME:-~/.local/share}/interimap/lib" \ - systemd_userunitdir="${XDG_DATA_HOME:-~/.local/share}/systemd/user" + prefix=$HOME/.local \ + sitelib=${XDG_DATA_HOME:-~/.local/share}/interimap/lib \ + systemd_userunitdir=${XDG_DATA_HOME:-~/.local/share}/systemd/user skips documentation and installs |