diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-06-02 17:15:42 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-06-02 17:15:42 +0200 |
commit | b69c870a3076d78ab595ed1cd4b41cf6b03b2610 (patch) | |
tree | dc7eb110695541f296a8e3724aaeea69d2c6d298 | |
parent | Makefile: just show the compiler output (diff) | |
download | dwm-b69c870a3076d78ab595ed1cd4b41cf6b03b2610.tar.gz dwm-b69c870a3076d78ab595ed1cd4b41cf6b03b2610.tar.bz2 dwm-b69c870a3076d78ab595ed1cd4b41cf6b03b2610.zip |
pledge: add rpath promise for the ugly Xft font fallback
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c index 09feae3..4465af1 100644 --- a/dwm.c +++ b/dwm.c @@ -2138,7 +2138,7 @@ main(int argc, char *argv[]) checkotherwm(); setup(); #ifdef __OpenBSD__ - if (pledge("stdio proc exec", NULL) == -1) + if (pledge("stdio rpath proc exec", NULL) == -1) die("pledge"); #endif /* __OpenBSD__ */ scan(); |