grep-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Grep-devel] switch to non-recursive makefile


From: Jim Meyering
Subject: Re: [Grep-devel] switch to non-recursive makefile
Date: Sun, 23 Dec 2018 08:21:45 -0800

On Sat, Dec 22, 2018 at 12:23 PM Assaf Gordon <address@hidden> wrote:
> Here's a first shot at converting grep's build system to non-recursive
> make. Based on past experience with sed, it'll take few iterations until
> all the kinks are ironed out... but this seems to work well initially.

Hi Assaf,
Thanks a lot for doing that.
I haven't looked at the actual changes yet, but did notice that
"make distcheck" failed for me like this:

  Making dvi in .
  make[2]: Entering directory '/j/grep/grep-3.3.3-dd5a1/_build/sub'
    TEXI2DVI doc/grep.dvi
  /p/bin/texi2dvi: etex exited with bad status, quitting.

This change fixed it:

diff --git a/doc/local.mk b/doc/local.mk
index 1def191..f2aa937 100644
--- a/doc/local.mk
+++ b/doc/local.mk
@@ -17,7 +17,7 @@
 # along with this program.  If not, see <https://www.gnu.org/licenses/>.

 info_TEXINFOS = doc/grep.texi
-grep_TEXINFOS = doc/fdl.texi
+doc_grep_TEXINFOS = doc/fdl.texi

 man_MANS = doc/grep.1 doc/fgrep.1 doc/egrep.1



reply via email to

[Prev in Thread] Current Thread [Next in Thread]