LRK wrote: > Hate to see you sitting around with nothing to do. :)
That's funny, I don't hate that at all :-) > Until I get up to speed on the bug reporting, here is one of the > 'BSD make' errors: > The missing input file name is due to the way it is specified. Is '$<' a GNU extension? I suppose you could change it to 'gnuradio.i' and see if it works. > Also 'make clean' fails in usrp due to '$(RM)' not being defined. I do > not find anywhere it gets defined in the Makefiles so this may be a > default in gmake. Yep, looks like gmake defaults this to 'rm -f'. You could add this to configure.ac using: AM_PATH_PROG([RM], [rm]) ...and change the $(RM) invocation to '$(RM) -f' in the usrp Makefile.am you mentioned (and anywhere else it is invoked directly.) -Johnathan
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Discuss-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
