Use install(1) to install mnexec so that setup.py develop works.

This commit is contained in:
Bob Lantz
2012-03-02 20:34:56 -08:00
parent 03dd914edc
commit ee222055f1
2 changed files with 13 additions and 10 deletions
+1 -2
View File
@@ -5,8 +5,7 @@
from setuptools import setup, find_packages
from os.path import join
scripts = [ join( 'bin', filename ) for filename in [
'mn', 'mnexec' ] ]
scripts = [ join( 'bin', filename ) for filename in [ 'mn' ] ]
modname = distname = 'mininet'