diff options
author | mat <mat@FreeBSD.org> | 2017-08-23 21:59:41 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2017-08-23 21:59:41 +0800 |
commit | 6234f272a8cb860b49c2c514009f4f6bf35e230f (patch) | |
tree | 6f1e9e83b0cf426c2df893619bbaa577ea1d39f6 /Tools | |
parent | e26d39513a83f178d165a4ba10da7051711bee9a (diff) | |
download | freebsd-ports-gnome-6234f272a8cb860b49c2c514009f4f6bf35e230f.tar.gz freebsd-ports-gnome-6234f272a8cb860b49c2c514009f4f6bf35e230f.tar.zst freebsd-ports-gnome-6234f272a8cb860b49c2c514009f4f6bf35e230f.zip |
Do not add $FreeBSD$ to the patch files.
Sponsored by: Absolight
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/patchtool.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Tools/scripts/patchtool.py b/Tools/scripts/patchtool.py index 65d7b533f196..aa837588bb69 100755 --- a/Tools/scripts/patchtool.py +++ b/Tools/scripts/patchtool.py @@ -210,9 +210,6 @@ def gendiff(path, wrksrc, outfile = ''): if (outfile != ''): outbuf[0] = '--- %s\n' % path_orig outbuf[1] = '+++ %s\n' % path - outbuf.insert(0, '\n') - outbuf.insert(0, '$%s$\n' % Vars.CVS_ID) - outbuf.insert(0, '\n') open(outfile, 'w').writelines(outbuf) else: sys.stdout.writelines(outbuf) |