Bugzilla – Bug 1329
On Fedora x86_64 python2.7 dir is misplaced on ./waf install
Last modified: 2012-01-05 08:06:52 UTC
On Fedora x86_64 ./waf install should install python2.7 in lib64 instead of lib. IMHO, it would be best if this uses --libdir=... setting as it is used for libns3-*.so files.
Some additional information is here: http://fedoraproject.org/wiki/Packaging:Python
This "should" be fixed in ns-3-dev. Please check.
Congratulations, almost perfect. ./waf configure --prefix=~/whatever and ./waf configure --prefix=~/whatever --libdir=~/whatever/lib64 both result in: $ ls ~/whatever/lib/python2.7/site-packages/ns/ __init__.py $ ls ~/whatever/lib64/python2.7/site-packages/ns/ aodv.so emu.so network.so tools.so applications.so energy.so nix_vector_routing.so topology_read.so bridge.so flow_monitor.so olsr.so uan.so click.so internet.so point_to_point_layout.so visualizer.so config_store.so lte.so point_to_point.so wifi.so core.py mesh.so propagation.so wimax.so _core.so mobility.so spectrum.so csma.so mpi.so stats.so dsdv.so netanim.so tap_bridge.so
And if I recall correctly, this file gets installed even with --disable-python.
(In reply to comment #4) > And if I recall correctly, this file gets installed even with --disable-python. This should not happen, looking at the code. The ns/__init__.py problem should be fixed, though I don't have a system to test.
(In reply to comment #5) > (In reply to comment #4) > > And if I recall correctly, this file gets installed even with --disable-python. > > This should not happen, looking at the code. It doesn't, I just checked. That was an issue with waf 1.5; it seems that you fixed it during upgrade to 1.6. > The ns/__init__.py problem should be fixed, though I don't have a system to > test. It is. Thanks.