Odd make install error - OSX

I’ve been talking off the board about this, but it’s gotten to a point
where
I have no idea what’s going wrong and wanted to see if anyone else had
some
input. I’m trying to get a USRP1 functional, and am using the code from
the
trunk.

Attached below is where I get an error in “sudo make install.” I was
getting
this earlier and make sure to uninstall everything and reinstall it,
just to
make sure. No luck. I’m wondering if there might be a problem with my
python
or something?

Is there a ports command that will uninstall everything, and then
uninstall
ports? I feel like I might be well served getting rid of everything it
has
installed and doing it fresh (this is where I miss add/remove from
windows
– before I realized most of the dependencies were on ports I did try to
manually install some of them, including various versions of python, so
is
it possible that that could be getting in the way?). I DID update
.bashrc
with the recommended script so that it looks to ports first, but I just
don’t know. It’s a bit flabbergasting!

any help is deeply appreciated, and thanks to Mike for being especially
helpful
-Jonathan

Byte-compiling python modules (optimized versions) …
init.py
test -z “/usr/local/lib/python2.5/site-packages/grc_gnuradio/usrp” ||
/opt/local/bin/gmkdir -p
“/usr/local/lib/python2.5/site-packages/grc_gnuradio/usrp”
/opt/local/bin/ginstall -c -m 644
…/…/…/grc/grc_gnuradio/usrp/init.py
…/…/…/grc/grc_gnuradio/usrp/common.py
…/…/…/grc/grc_gnuradio/usrp/dual_usrp.py
…/…/…/grc/grc_gnuradio/usrp/simple_usrp.py
‘/usr/local/lib/python2.5/site-packages/grc_gnuradio/usrp’
Byte-compiling python modules…
init.pycommon.pydual_usrp.pysimple_usrp.py
Byte-compiling python modules (optimized versions) …
init.pycommon.pydual_usrp.pysimple_usrp.py
test -z “/usr/local/lib/python2.5/site-packages/grc_gnuradio/wxgui” ||
/opt/local/bin/gmkdir -p
“/usr/local/lib/python2.5/site-packages/grc_gnuradio/wxgui”
/opt/local/bin/ginstall -c -m 644
…/…/…/grc/grc_gnuradio/wxgui/init.py
…/…/…/grc/grc_gnuradio/wxgui/top_block_gui.py
‘/usr/local/lib/python2.5/site-packages/grc_gnuradio/wxgui’
Byte-compiling python modules…
init.pytop_block_gui.py
Byte-compiling python modules (optimized versions) …
init.pytop_block_gui.py
Making install in gui
make[4]: Nothing to be done for install-exec-am'. test -z "/usr/local/lib/python2.5/site-packages/gnuradio/grc/gui" || /opt/local/bin/gmkdir -p "/usr/local/lib/python2.5/site-packages/gnuradio/grc/gui" /opt/local/bin/ginstall -c -m 644 ../../../grc/gui/Block.py ../../../grc/gui/Colors.py ../../../grc/gui/Constants.py ../../../grc/gui/Connection.py ../../../grc/gui/Element.py ../../../grc/gui/FlowGraph.py ../../../grc/gui/Param.py ../../../grc/gui/Platform.py ../../../grc/gui/Port.py ../../../grc/gui/Utils.py ../../../grc/gui/ActionHandler.py ../../../grc/gui/Actions.py ../../../grc/gui/Bars.py ../../../grc/gui/BlockTreeWindow.py ../../../grc/gui/Constants.py ../../../grc/gui/Dialogs.py ../../../grc/gui/DrawingArea.py ../../../grc/gui/FileDialogs.py ../../../grc/gui/MainWindow.py ../../../grc/gui/Messages.py ../../../grc/gui/NotebookPage.py ../../../grc/gui/ParamsDialog.py ../../../grc/gui/Preferences.py ../../../grc/gui/StateCache.py ../../../grc/gui/__init__.py '/usr/local/lib/python2.5/site-packages/gnuradio/grc/gui' /opt/local/bin/ginstall: will not overwrite just-created/usr/local/lib/python2.5/site-packages/gnuradio/grc/gui/Constants.py’
with
`…/…/…/grc/gui/Constants.py’
make[4]: *** [install-ourpythonPYTHON] Error 1
make[3]: *** [install-am] Error 2
make[2]: *** [install-recursive] Error 1
make[1]: *** [install] Error 2
make: *** [install-recursive] Error 1

Constants.py was listed twice in the Makefile.am. Whoops~!

Its fixed on Wednesday: http://gnuradio.org/trac/changeset/11323

svn up and try it again

-Josh

That did the trick. Thanks Josh!

2009/7/3 Josh B. [email protected]