From d7357791e8532dabc6f2e45343de8f75aa375652 Mon Sep 17 00:00:00 2001 From: Sean Reifscheider Date: Tue, 5 Sep 2006 13:39:06 +0000 Subject: [PATCH] Fixing an improperly escaped grep in .spec file, pointed out by Neal Norwitz. --- Misc/RPM/python-2.5.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/RPM/python-2.5.spec b/Misc/RPM/python-2.5.spec index 877e0aec3f..4df60e8448 100644 --- a/Misc/RPM/python-2.5.spec +++ b/Misc/RPM/python-2.5.spec @@ -286,7 +286,7 @@ find "$RPM_BUILD_ROOT""%{__prefix}"/bin -type f | 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 -- 2.40.0