From: jcorgan Date: Mon, 23 Oct 2006 17:29:52 +0000 (+0000) Subject: Fix make distcheck breakage. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=688af764739051f04769c55d6e6d832ebdb72784;p=debian%2Fgnuradio Fix make distcheck breakage. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3837 221aa14e-8319-0410-a670-987f0aec2ac5 --- diff --git a/gr-howto-write-a-block/src/lib/Makefile.am b/gr-howto-write-a-block/src/lib/Makefile.am index 54847ede..ad362125 100644 --- a/gr-howto-write-a-block/src/lib/Makefile.am +++ b/gr-howto-write-a-block/src/lib/Makefile.am @@ -41,7 +41,7 @@ NON_LOCAL_IFILES = \ LOCAL_IFILES = \ - howto.i + $(top_srcdir)/src/lib/howto.i # These files are built by SWIG. The first is the C++ glue. # The second is the python wrapper that loads the _howto shared library @@ -72,8 +72,8 @@ _howto_la_LIBADD = \ $(PYTHON_LDFLAGS) \ -lstdc++ -howto.cc howto.py: howto.i $(ALL_IFILES) - $(SWIG) $(SWIGPYTHONARGS) -module howto -o howto.cc howto.i +howto.cc howto.py: $(LOCAL_IFILES) $(ALL_IFILES) + $(SWIG) $(SWIGPYTHONARGS) -module howto -o howto.cc $(LOCAL_IFILES) # These headers get installed in ${prefix}/include/gnuradio grinclude_HEADERS = \