Skip to content

Commit

Permalink
changed AP_CPPFLAGS to AM_CPPFLAGS in PyImathNumpy/Makefile.am.
Browse files Browse the repository at this point in the history
What this a typo? The automake-generated Makefiles expect 'AM', which
was leading to a failure to find PyImath.h.

Signed-off-by: Cary Phillips <cary@ilm.com>
  • Loading branch information
cary-ilm authored and kdt3rd committed Aug 10, 2019
1 parent 6999eb3 commit 8590172
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions PyIlmBase/PyImathNumpy/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ imathnumpymodule_la_LIBADD = $(top_builddir)/PyImath/libPyImath.la @BOOST_PYTHO

noinst_HEADERS =

AP_CPPFLAGS = @ILMBASE_CXXFLAGS@ \
@NUMPY_CXXFLAGS@ \
-I$(top_srcdir)/PyImath \
-I$(top_builddir) \
-I$(top_srcdir)/config
AM_CPPFLAGS = @ILMBASE_CXXFLAGS@ \
@NUMPY_CXXFLAGS@ \
-I$(top_srcdir)/PyImath \
-I$(top_builddir) \
-I$(top_srcdir)/config

0 comments on commit 8590172

Please sign in to comment.