freebsd-ports/net/py-impacket/files/patch-setup.py
Dryice Dong Liu 288f8ab5dc update to 0.9.6.0
new file: files/patch-setup.py

PR:	ports/103726
Submitted by:	Justin Heath <justin@snort.org>
Approved by:	itetcu (mentor) Marcin Jessa <yazzy@yazzy.org> (maintainer)
2007-01-28 09:00:14 +00:00

12 lines
602 B
Python

--- Impacket-0.9.6.0/setup.py 2006-09-20 17:37:44.000000000 -0400
+++ setup.py 2006-09-20 17:48:59.000000000 -0400
@@ -17,7 +17,7 @@
maintainer = "Max Caceres",
maintainer_email = "max@coresecurity.com",
packages = ['impacket', 'impacket.dcerpc'],
- scripts = glob.glob(os.path.join('examples', '*.py'))+glob.glob('doc/*'),
+ scripts = glob.glob(os.path.join('examples', '*.py')),
data_files = [(os.path.join('share', 'doc', PACKAGE_NAME),
- ['README', 'LICENSE'])],
+ ['README', 'LICENSE']+glob.glob('doc/*'))]
)