From: Vinay Kumar Kothiyal <[email protected]> This was preventing from creating a package on Windows machines where there is no /etc/ folder.
Signed-off-by: FUJITA Tomonori <[email protected]> --- setup.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/setup.py b/setup.py index 7f4b53f..da8f30f 100644 --- a/setup.py +++ b/setup.py @@ -52,5 +52,5 @@ setup(name='ryu', packages=find_packages(), scripts=['bin/ryu-manager', 'bin/ryu-client'], - data_files=[('/etc/ryu', ['etc/ryu/ryu.conf'])], + data_files=[('etc/ryu', ['etc/ryu/ryu.conf'])], ) -- 1.7.2.5 ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
