[Python-checkins] r51746 - python/branches/release25-maint/Misc/RPM/python-2.5.spec

sean.reifschneider python-checkins at python.org
Tue Sep 5 15:39:06 CEST 2006


Author: sean.reifschneider
Date: Tue Sep  5 15:39:06 2006
New Revision: 51746

Modified:
   python/branches/release25-maint/Misc/RPM/python-2.5.spec
Log:
Fixing an improperly escaped grep in .spec file, pointed out by Neal Norwitz.


Modified: python/branches/release25-maint/Misc/RPM/python-2.5.spec
==============================================================================
--- python/branches/release25-maint/Misc/RPM/python-2.5.spec	(original)
+++ python/branches/release25-maint/Misc/RPM/python-2.5.spec	Tue Sep  5 15:39:06 2006
@@ -286,7 +286,7 @@
 rm -f tools.files
 find "$RPM_BUILD_ROOT""%{__prefix}"/%{libdirname}/python%{libvers}/idlelib \
       "$RPM_BUILD_ROOT""%{__prefix}"/%{libdirname}/python%{libvers}/Tools -type f |
-      grep -v -e '\\.pyc$' -e '\\.pyo$' |
+      grep -v -e '\.pyc$' -e '\.pyo$' |
       sed "s|^${RPM_BUILD_ROOT}|/|" >tools.files
 echo "%{__prefix}"/bin/idle%{binsuffix} >>tools.files
 grep '\.py$' tools.files | sed 's/$/c/' | grep -v /idlelib/ >tools.files.tmp


More information about the Python-checkins mailing list