]> diplodocus.org Git - nmh/commitdiff
Set MH to the resolved, absolute pathname inside context_read() so
authorRichard M Kreuter <kreuter@progn.net>
Wed, 20 Jan 2016 02:39:11 +0000 (21:39 -0500)
committerDavid Levine <levinedl@acm.org>
Wed, 20 Jan 2016 02:39:11 +0000 (21:39 -0500)
that exec'd children can find it.

sbr/context_read.c

index 8f63fedfa83a0ad4ea58c3c81fd89bc43a2aa60a..803406881024fc8dfe8883911e50ae8d88f8931a 100644 (file)
@@ -65,6 +65,8 @@ context_read (void)
     if ((cp = getenv("MH")) && *cp != '\0') {
        defpath = path(cp, TFILE);
 
+        /* defpath is an absolute path; make sure that always MH is, too. */
+       setenv("MH", defpath, 1);
        if (stat(defpath, &st) != -1 && (st.st_mode & S_IFREG) == 0)
                adios((char *)0, "`%s' specified by your MH environment variable is not a normal file", cp);