diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-05-27 08:49:29 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-05-27 08:49:29 +0000 |
commit | a78c230b4ab71aa2818b147e9dce11419639b439 (patch) | |
tree | 45d3a06410ddace5a891c188b2f69b91ccb56e6a /Tools/scripts/patchtool.py | |
parent | 3cbcbd9f268a958a0abbb5b21463b98d90cd0fb0 (diff) | |
download | ports-a78c230b4ab71aa2818b147e9dce11419639b439.tar.gz ports-a78c230b4ab71aa2818b147e9dce11419639b439.zip |
- Remove 'pkg-plist' from required files
Approved by: sobomax
Notes
Notes:
svn path=/head/; revision=110121
Diffstat (limited to 'Tools/scripts/patchtool.py')
-rwxr-xr-x | Tools/scripts/patchtool.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Tools/scripts/patchtool.py b/Tools/scripts/patchtool.py index de9a5ed99ac7..a13bc6ed5230 100755 --- a/Tools/scripts/patchtool.py +++ b/Tools/scripts/patchtool.py @@ -60,8 +60,7 @@ class Vars: # Check if the supplied patch refers to a port's directory. # def isportdir(path, soft = False): - REQ_FILES = ('Makefile', 'pkg-descr', 'pkg-plist', \ - 'distinfo') + REQ_FILES = ('Makefile', 'pkg-descr', 'distinfo') if not os.path.isdir(path) and soft != True: raise IOError(errno.ENOENT, path) # Not reached # |