- fixup missing -lcrypt to "crypt" module in config patch (patch 0)

This commit is contained in:
dmalcolm 2010-07-26 18:12:31 +00:00
parent cff1b4f3d9
commit 7eccae0478
2 changed files with 5 additions and 2 deletions

View File

@ -101,7 +101,7 @@ diff -up Python-2.7rc1/Modules/Setup.dist.rhconfig Python-2.7rc1/Modules/Setup.d
# First, look at Setup.config; configure may have set this for you.
-#crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
+crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
+crypt cryptmodule.c -lcrypt # crypt(3); needs -lcrypt on some systems
# Some more UNIX dependent modules -- off by default, since these

View File

@ -91,7 +91,7 @@ Summary: An interpreted, interactive, object-oriented programming language
Name: %{python}
# Remember to also rebase python-docs when changing this:
Version: 2.7
Release: 6%{?dist}
Release: 7%{?dist}
License: Python
Group: Development/Languages
Provides: python-abi = %{pybasever}
@ -1405,6 +1405,9 @@ rm -fr %{buildroot}
# payload file would be unpackaged)
%changelog
* Mon Jul 26 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-7
- fixup missing -lcrypt to "crypt" module in config patch (patch 0)
* Mon Jul 26 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-6
- re-enable systemtap
- cherrypick upstream patch to 2to3 for "from itertools import *"