changeset 188:4adc5d020dda

build: fix automake warning about variable naming conflict * Makefile.am (OCT_SOURCES): Rename to OCT_SOURCE_FILES to avoid conflicting with automake naming conventions.
author Mike Miller <mtmiller@octave.org>
date Thu, 09 Jun 2016 12:11:32 -0700
parents 30a305837ae6
children def67115cbe3
files Makefile.am
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.am	Thu Jun 09 12:08:25 2016 -0700
+++ b/Makefile.am	Thu Jun 09 12:11:32 2016 -0700
@@ -38,7 +38,7 @@
   pyeval.oct \
   pyexec.oct
 
-OCT_SOURCES = $(patsubst %.oct, %.cc, $(OCT_FILES))
+OCT_SOURCE_FILES = $(patsubst %.oct, %.cc, $(OCT_FILES))
 
 PYTAVE_HEADER_FILES = \
   arrayobjectdefs.h \
@@ -53,7 +53,7 @@
   test/exceptions.py \
   test/test.py
 
-EXTRA_DIST = $(DOC_FILES) $(OCT_SOURCES) $(PY_FILES)
+EXTRA_DIST = $(DOC_FILES) $(OCT_SOURCE_FILES) $(PY_FILES)
 
 EXTRA_libdir = $(PYTAVE_MODULE_INSTALL_PATH)
 EXTRA_lib_LTLIBRARIES = _pytave.la