1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00
freebsd-ports/www/moinmoin/files/patch-setup.py
Wesley Shields 8cd1bffea8 Do not install .orig files.
PR:		ports/146142
Submitted by:	Bai Guixing <khsing.cn@gmail.com> (maintainer)
2010-04-30 14:19:33 +00:00

11 lines
328 B
Python

--- ./setup.py.orig 2010-04-30 10:09:50.411058590 -0400
+++ ./setup.py 2010-04-30 10:10:32.801862294 -0400
@@ -26,6 +26,7 @@
return (name.startswith('.') or
name.startswith('#') or
name.endswith('.pickle') or
+ name.endswith('.orig') or
name == 'CVS')
def isgood(name):