From c7eae29d2f8afe704b92eca9647eb718a38a486b Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Thu, 6 Nov 2014 20:59:15 -0500 Subject: [PATCH] Rename perl sources variable to avoid confusion Variables ending with _SOURCES are specific to automake. --- src/common/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 68f8191..b061d6e 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -12,7 +12,7 @@ BUILT_SOURCES = \ instructions_8051.c instructions_8051.h \ opcodes.h opcodes.c -PERL_SOURCES = \ +PERL_SRC = \ opcodes2c.pl \ opcodes.lst @@ -33,7 +33,7 @@ nodist_libemu8051_a_SOURCES = \ $(BUILT_SOURCES) # These files are generated automatically by a perl script. -$(BUILT_SOURCES) : $(PERL_SOURCES) +$(BUILT_SOURCES) : $(PERL_SRC) @echo " PERL opcodes2c.pl" @$(srcdir)/opcodes2c.pl $(srcdir)/opcodes.lst $(builddir) @@ -45,4 +45,4 @@ MAINTAINERCLEANFILES = \ Makefile.in EXTRA_DIST = \ - $(PERL_SOURCES) + $(PERL_SRC) -- 2.20.1