diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-10-06 20:46:36 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-10-06 20:46:36 +0000 |
commit | f600ebad6152e6d4f2e85b8a505ace5b81d23263 (patch) | |
tree | 569141f412ced5aae6ccc791eac80e7ff0f2bef9 /makerelease | |
parent | 4cb267590512956e78cc054f816fc6294088ce2b (diff) | |
download | fetchmail-f600ebad6152e6d4f2e85b8a505ace5b81d23263.tar.gz fetchmail-f600ebad6152e6d4f2e85b8a505ace5b81d23263.tar.bz2 fetchmail-f600ebad6152e6d4f2e85b8a505ace5b81d23263.zip |
Ready to ship.
svn path=/trunk/; revision=1486
Diffstat (limited to 'makerelease')
-rwxr-xr-x | makerelease | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/makerelease b/makerelease index 3a235ade..59eb4d75 100755 --- a/makerelease +++ b/makerelease @@ -75,8 +75,9 @@ $oldrcs = $oldid; $oldrcs =~ tr/-/./; print REPORT <<EOF; -Diffs from the previous ($oldrcs) release follow as a MIME attachment. +By popular demand, diffs from the previous release have been omitted. EOF +#Diffs from the previous ($oldrcs) release follow as a MIME attachment. close(NEWS); @@ -88,7 +89,9 @@ if ($rcsid eq '<workfile>') { system("rcsdiff -u -r$oldid -r$rcsid RCS/* 2>/dev/null >DIFFS.$$"); } -system "metasend -b -D 'fetchmail-$rcsid announcement' -m 'text/plain' -e 7bit -f PREAMBLE.$$ -n -D 'diff -u between -$oldrcs $rcsid' -m 'text/plain' -e 7bit -f DIFFS.$$ -o RELEASE_NOTES"; +mv PREAMBLE.$$ RELEASE.NOTES +# If we ever want to go back to enclosing diffs. +#system "metasend -b -D 'fetchmail-$rcsid announcement' -m 'text/plain' -e 7bit -f PREAMBLE.$$ -n -D 'diff -u between -$oldrcs $rcsid' -m 'text/plain' -e 7bit -f DIFFS.$$ -o RELEASE_NOTES"; unlink("PREAMBLE.$$"); unlink("DIFFS.$$"); |