On Mon, Apr 30, 2007 at 11:15:41AM -0400, Michael Dickens wrote: > "Making all in swig > make[3]: *** No rule to make target `../../../../gnuradio-core/src/ > lib/runtime/gr_simple_flowgraph.i', needed by > `gnuradio_swig_py_runtime.cc'. Stop." > > There is indeed no "gr_simple_flowgraph.i", and this is referenced in > the file: > gnuradio-core/src/lib/swig/gnuradio_swig_py_runtime.d > > While I can temporarily work around this by removing that line from > the file, it would be better if someone corrected the issue. - MLD
This is a problem with how we compute swig dependencies. It's got some bugs; patches are welcome. The file in question isn't required, it's just that the dependency file is out of date. I believe that this will fix it: $ cd <top-of-your-gnuradio-build-tree> $ find . -name '*.d' -print0 | xargs -0 -L 1 cp /dev/null $ (./bootstrap && ./configure; make && make check && make install) 2>&1 | tee make.log Eric _______________________________________________ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio