Re: mh bindir doesn't propagate to subdirs
Ken Brown <[email protected]>
| Newsgroups | gmane.comp.gnu.mailutils.bugs |
|---|---|
| Message-ID | <[email protected]> |
On 4/21/2017 9:35 AM, Ken Brown wrote: > There seems to be a glitch in the build system so that the value of > bindir set in mh/Makefile.am doesn't propagate to the subdirs etc and > tests. I guess this is irrelevant for the tests subdirectory. For etc, the following trivial patch suffices: --- a/mh/etc/Makefile.am +++ b/mh/etc/Makefile.am @@ -16,6 +16,7 @@ ## along with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>. mhlibdir = $(pkgdatadir)/mh +bindir = @MH_BIN_DIR@ LISPSRC = mailutils-mh.el lisp_LISP = @lisp_LISP@ Ken