From d30bdf45a88d59ae9fd2c893671dfa87f7363797 Mon Sep 17 00:00:00 2001 From: Will Estes Date: Fri, 7 Apr 2023 10:01:52 -0400 Subject: fix(build): build man page when cross compiling fixes #560 --- doc/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/Makefile.am b/doc/Makefile.am index ea44756..469ebf2 100755 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,4 +1,8 @@ +if CROSS +FLEX = $(top_builddir)/src/stage1flex +else FLEX = $(top_builddir)/src/flex$(EXEEXT) +endif TEXI2DVI = @TEXI2DVI@ -I $(srcdir)/../examples/manual/ TEXI2PDF = @TEXI2PDF@ -I $(srcdir)/../examples/manual/ -- cgit v1.2.1