move m4 make variable to src/Makefile.am.

This prevents an error when building skel.c caused by the $(m4) make
variable not being defined. Particularly nasty since skel.c would
still be created, thus causing make to think skel.c was up to date.
This commit is contained in:
Will Estes 2014-02-18 14:34:20 -05:00
parent e43ca6dd7e
commit 5dbce367dc
2 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,6 @@
# additional info.
ACLOCAL_AMFLAGS = -I m4
m4 = @M4@
indent = @INDENT@
dist_doc_DATA = \

View File

@ -3,6 +3,8 @@ localedir = $(datadir)/locale
AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" -I$(top_srcdir)/intl
LIBS = @LIBINTL@ @LIBS@
m4 = @M4@
bin_PROGRAMS = flex
lib_LTLIBRARIES = \
libfl.la \