rpms/python/devel python-2.4.3-cflags.patch, NONE, 1.1 python.spec, 1.84, 1.85

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Thu Jul 20 17:02:53 UTC 2006


Author: misa

Update of /cvs/dist/rpms/python/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv32392

Modified Files:
	python.spec 
Added Files:
	python-2.4.3-cflags.patch 
Log Message:
Fixed bug #199373 (on some platforms CFLAGS is needed when linking)

python-2.4.3-cflags.patch:
 Makefile.pre.in |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE python-2.4.3-cflags.patch ---
--- Python-2.4.3/Makefile.pre.in.BAD	2006-07-13 18:22:35.000000000 -0400
+++ Python-2.4.3/Makefile.pre.in	2006-07-13 18:22:55.000000000 -0400
@@ -309,7 +309,7 @@
 
 # Build the interpreter
 $(BUILDPYTHON):	Modules/$(MAINOBJ) $(LIBRARY) $(LDLIBRARY)
-		$(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
+		$(LINKCC) $(CFLAGS) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
 			Modules/$(MAINOBJ) \
 			$(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
 


Index: python.spec
===================================================================
RCS file: /cvs/dist/rpms/python/devel/python.spec,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- python.spec	17 Jul 2006 13:14:06 -0000	1.84
+++ python.spec	20 Jul 2006 17:02:51 -0000	1.85
@@ -20,7 +20,7 @@
 Summary: An interpreted, interactive, object-oriented programming language.
 Name: %{python}
 Version: %{pybasever}.3
-Release: 12%{?dist}
+Release: 13%{?dist}
 License: PSF - see LICENSE
 Group: Development/Languages
 Provides: python-abi = %{pybasever}
@@ -43,6 +43,7 @@
 Patch15: python-2.4.1-canonicalize.patch
 Patch16: python-2.4-gen-assert.patch
 Patch17: python-2.4-webbrowser.patch
+Patch18: python-2.4.3-cflags.patch
 
 %if %{main_python}
 Obsoletes: Distutils
@@ -150,6 +151,7 @@
 %patch15 -p1 -b .canonicalize
 %patch16 -p2 -b .gen-assert
 %patch17 -p0 -b .web-browser
+%patch18 -p1 -b .cflags
 
 # This shouldn't be necesarry, but is right now (2.2a3)
 find -name "*~" |xargs rm -f
@@ -392,6 +394,9 @@
 %{_libdir}/python%{pybasever}/lib-dynload/_tkinter.so
 
 %changelog
+* Thu Jul 20 2006 Mihai Ibanescu <misa at redhat.com> - 2.4.3-13
+- Fixed bug #199373 (on some platforms CFLAGS is needed when linking)
+
 * Mon Jul 17 2006 Mihai Ibanescu <misa at redhat.com> - 2.4.3-12
 - added dist tag back
 




More information about the fedora-cvs-commits mailing list