On Tue, Mar 06, 2007 at 01:38:51PM +0100, Trond Danielsen wrote: > Hi, > > 2. Install path for some of the python modules are problematic: > /usr/lib64/python2.4/site-packages/__init__.py > /usr/lib64/python2.4/site-packages/_usrp_prims.la > /usr/lib64/python2.4/site-packages/_usrp_prims.so > /usr/lib64/python2.4/site-packages/usrp_dbid.py > /usr/lib64/python2.4/site-packages/usrp_fpga_regs.py > /usr/lib64/python2.4/site-packages/usrp_prims.py > > Would it be possible to move these to a separate subfolder? > > Cheers, > -- > Trond Danielsen
In [4728] on the trunk, I moved these to site-packages/usrpm. This change could impact user code that's not in the tree. In particular, any occurrences of any of: import usrp_dbid import usrp_prims from usrp_fpga_regs import * should be changed to: from usrpm import usrp_dbid from usrpm import usrp_prims from usrpm.usrp_fpga_regs import * respectively. Sorry about the incompatible change, but this does clean up our installation. Thanks, Eric _______________________________________________ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio