diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2021-09-15 14:34:31 +0200 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2021-09-15 14:34:31 +0200 |
commit | 24304c1b500773ed0a350d38456331c681fe8a83 (patch) | |
tree | 975f9eef3851ff05ebe6613a8719ad08e2c476bf /net-misc/mstpd | |
parent | sys-kernel/vanilla-sources: Automated version bump to {5.4.146,5.10.65,5.13.1... (diff) | |
download | gentoo-24304c1b500773ed0a350d38456331c681fe8a83.tar.gz gentoo-24304c1b500773ed0a350d38456331c681fe8a83.tar.bz2 gentoo-24304c1b500773ed0a350d38456331c681fe8a83.zip |
net-misc/mstpd: Change localstatedir to "${EPREFIX}/"
- Old value would reference legacy directory (/var/run), which would
result in the following message:
```
/lib/systemd/system/mstpd.service:8: PIDFile= references a path below
legacy directory /var/run/, updating /var/run/mstpd.pid →
/run/mstpd.pid; please update the unit file accordingly.
```
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'net-misc/mstpd')
-rw-r--r-- | net-misc/mstpd/mstpd-0.0.9-r1.ebuild (renamed from net-misc/mstpd/mstpd-0.0.9.ebuild) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-misc/mstpd/mstpd-0.0.9.ebuild b/net-misc/mstpd/mstpd-0.0.9-r1.ebuild index 06a8a8618cf3..29d66dea87e3 100644 --- a/net-misc/mstpd/mstpd-0.0.9.ebuild +++ b/net-misc/mstpd/mstpd-0.0.9-r1.ebuild @@ -22,7 +22,7 @@ src_configure() { econf \ --with-bashcompletiondir="$(get_bashcompdir)" \ --with-systemdunitdir="$(systemd_get_systemunitdir)" \ - --localstatedir="${EPREFIX}"/var + --localstatedir="${EPREFIX}"/ } src_install() { |