aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2023-01-08 20:44:22 +0100
committerRobin Jarry <robin@jarry.cc>2023-01-10 21:49:18 +0100
commit04303172d4f96b284e0c915ce4a7b87e1439bb87 (patch)
tree4dcadaeb7995ccee0b260f384b063d8144e37c4c /CHANGELOG.md
parent21d8963928162e8a1fe62b39c87b3e4735b05dba (diff)
downloadaerc-04303172d4f96b284e0c915ce4a7b87e1439bb87.tar.gz
filters: install them in $PREFIX/libexec/aerc/filters
The filesystem hierarchy standard describes /usr/share as "Architecture-independent data". This folder is not intended for executable scripts and especially not for arch specific binary files (such as the wrap filter). Lintian reports an error with aerc 0.14.0: arch-dependent-file-in-usr-share [usr/share/aerc/filters/wrap] Which I had to fix by moving the filter into /usr/libexec. Install all filters into $PREFIX/libexec/aerc/filters and update the default SearchDirs to look them up in here as well. Link: https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch04s11.html Link: https://salsa.debian.org/go-team/packages/aerc/-/commit/a0ca00260ffd Signed-off-by: Robin Jarry <robin@jarry.cc> Acked-by: Moritz Poldrack <moritz@poldrack.dev>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9d8db972..ea9ca1d0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- New column-based message list format with `index-columns`.
- Add a `msglist_answered` style for answered messages.
+### Changed
+
+- Filters are now installed in `$PREFIX/libexec/aerc/filters`. The default exec
+ `PATH` has been modified to include all variations of the `libexec` subdirs.
+
### Deprecated
- `[ui].index-format` setting has been replaced by `index-columns`.