...and the actual promise diff, oops.

patch-config_mk was updated to not strip debug symbols when linking.
This commit is contained in:
kn 2018-06-03 17:00:14 +00:00
parent d43bd5a0b5
commit d16c252cec

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-dwm_c,v 1.1 2018/05/22 13:30:57 kn Exp $
$OpenBSD: patch-dwm_c,v 1.2 2018/06/03 17:00:14 kn Exp $
Index: dwm.c
--- dwm.c.orig
@ -7,7 +7,7 @@ Index: dwm.c
die("dwm: cannot open display\n");
checkotherwm();
setup();
+ if (pledge("stdio proc exec", NULL) == -1)
+ if (pledge("stdio rpath proc exec", NULL) == -1)
+ die("pledge\n");
scan();
run();