From a066bd459cfa1cf5fd5b5821e71ab196653125b3 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Fri, 1 Aug 2003 08:45:54 +0000 Subject: [PATCH] * wrap/python/Makefile.am (spot_wrap.cxx, spot.py): Lookup spot.i in $(srcdir). --- ChangeLog | 5 +++++ wrap/python/Makefile.am | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 19999734c..27fcd6cf7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-08-01 Alexandre Duret-Lutz + + * wrap/python/Makefile.am (spot_wrap.cxx, spot.py): Lookup + spot.i in $(srcdir). + 2003-07-31 Alexandre Duret-Lutz * configure.ac: Output wrap/python/tests/Makefile diff --git a/wrap/python/Makefile.am b/wrap/python/Makefile.am index 2dcf18197..daa4cbc7c 100644 --- a/wrap/python/Makefile.am +++ b/wrap/python/Makefile.am @@ -10,10 +10,10 @@ _spot_la_LDFLAGS = -avoid-version -module _spot_la_LIBADD = $(top_builddir)/src/libspot.la EXTRA_DIST = ltihooks.py spot.i -spot_wrap.cxx: spot.i - swig -c++ -python -I$(top_srcdir)/src spot.i +spot_wrap.cxx: $(srcdir)/spot.i + swig -c++ -python -I$(top_srcdir)/src $(srcdir)/spot.i -spot.py: spot.i +spot.py: $(srcdir)/spot.i $(MAKE) $(AM_MAKEFLAGS) spot_wrap.cxx MAINTAINERCLEANFILES = spot_wrap.cxx spot.py