diff options
author | Todd Lyons <tlyons@exim.org> | 2014-12-22 05:30:59 -0800 |
---|---|---|
committer | Todd Lyons <tlyons@exim.org> | 2014-12-22 05:30:59 -0800 |
commit | 3394b36a12dad7e106db7d7e59497cb24b10e67f (patch) | |
tree | e05b139f7c4ff833b4300c17b19b944881075ea1 /release-process | |
parent | a60f6c07eea74e79b88828295a191e79595d8960 (diff) |
Bug 1547: Omit RFCs from release tarball docs dir
RFC Drafts and RFCs have licenses which are problematic for Debian
distribution. Omit them from the release tarball.
Diffstat (limited to 'release-process')
-rwxr-xr-x | release-process/scripts/mk_exim_release.pl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/release-process/scripts/mk_exim_release.pl b/release-process/scripts/mk_exim_release.pl index e3267fd3e..bb633061b 100755 --- a/release-process/scripts/mk_exim_release.pl +++ b/release-process/scripts/mk_exim_release.pl @@ -223,7 +223,11 @@ sub move_text_docs_into_pkg { next if ( ( $fn eq 'ABOUT' ) || ( $fn eq 'ChangeLog.0' ) - || ( $fn eq 'test-harness.txt' ) ); + || ( $fn eq 'test-harness.txt' ) + # Debian issue re licensing of RFCs + || ( $fn =~ /^draft-ietf-.*/ ) + || ( $fn =~ /^rfc.*/ ) + ); move( $file, File::Spec->catfile( $new_docdir, $fn ) ); } } |