diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-07-28 10:49:37 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-07-28 10:49:37 (GMT) |
commit | e567114e472470554adda63ab39ca0850d51fd66 (patch) | |
tree | 18966af29b5ee17a43af82c36485d31461516b62 /Lib/distutils/command | |
parent | 611a7101ca2161903f403e3b70e6087957730b1c (diff) | |
download | cpython-e567114e472470554adda63ab39ca0850d51fd66.zip cpython-e567114e472470554adda63ab39ca0850d51fd66.tar.gz cpython-e567114e472470554adda63ab39ca0850d51fd66.tar.bz2 |
Patch #543498: Use License: field instead of Copyright:.
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/bdist_rpm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_rpm.py b/Lib/distutils/command/bdist_rpm.py index 808ddc1..dd9dc66 100644 --- a/Lib/distutils/command/bdist_rpm.py +++ b/Lib/distutils/command/bdist_rpm.py @@ -348,7 +348,7 @@ class bdist_rpm (Command): spec_file.append('Source0: %{name}-%{version}.tar.gz') spec_file.extend([ - 'Copyright: ' + self.distribution.get_license(), + 'License: ' + self.distribution.get_license(), 'Group: ' + self.group, 'BuildRoot: %{_tmppath}/%{name}-buildroot', 'Prefix: %{_prefix}', ]) |