msmtp: fix conf fallback path

This commit is contained in:
Henrik Grimler 2020-08-01 05:15:19 +02:00
parent e9330f0980
commit a1cbf10fd1

View File

@ -0,0 +1,11 @@
--- ../tools.c.orig 2020-08-01 05:02:12.989413738 +0200
+++ ./src/tools.c 2020-08-01 05:02:39.633413719 +0200
@@ -345,7 +345,7 @@
#ifdef SYSCONFDIR
return xstrdup(SYSCONFDIR);
#else
- return xstrdup("/etc");
+ return xstrdup("@TERMUX_PREFIX@/etc");
#endif
#endif