summaryrefslogtreecommitdiffstats
path: root/Misc/RPM
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2004-03-31 18:59:04 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2004-03-31 18:59:04 (GMT)
commitfb66cd25406555124fbab964388d4a79a7bc792e (patch)
tree0cdadcead0d746ac11d0e34cff854360c5d49369 /Misc/RPM
parent59db96f2a3e89ce4a3d309a6e5aa8b472e4e1cb1 (diff)
downloadcpython-fb66cd25406555124fbab964388d4a79a7bc792e.zip
cpython-fb66cd25406555124fbab964388d4a79a7bc792e.tar.gz
cpython-fb66cd25406555124fbab964388d4a79a7bc792e.tar.bz2
Patch #924497: find(1) all files with /usr/local/bin/python in them.
Backported to 2.3.
Diffstat (limited to 'Misc/RPM')
-rw-r--r--Misc/RPM/python-2.3.spec12
1 files changed, 7 insertions, 5 deletions
diff --git a/Misc/RPM/python-2.3.spec b/Misc/RPM/python-2.3.spec
index d699f59..e2f7a69 100644
--- a/Misc/RPM/python-2.3.spec
+++ b/Misc/RPM/python-2.3.spec
@@ -32,7 +32,7 @@
%define name python
%define version 2.3.3
%define libvers 2.3
-%define release 1pydotorg
+%define release 3pydotorg
%define __prefix /usr
# kludge to get around rpm <percent>define weirdness
@@ -127,6 +127,10 @@ formats.
%endif
%changelog
+* Sat Mar 27 2003 Sean Reifschneider <jafo-rpms@tummy.com> [2.3.2-3pydotorg]
+- Being more agressive about finding the paths to fix for
+ #!/usr/local/bin/python.
+
* Sat Feb 07 2004 Sean Reifschneider <jafo-rpms@tummy.com> [2.3.3-2pydotorg]
- Adding code to remove "#!/usr/local/bin/python" from particular files and
causing the RPM build to terminate if there are any unexpected files
@@ -267,10 +271,8 @@ mkdir -p "$RPM_BUILD_ROOT"/var/www/html/python
%endif
# fix the #! line in installed files
-for file in \
- usr/lib/python2.3/Tools/scripts/parseentities.py \
- usr/lib/python2.3/cgi.py \
- usr/lib/python2.3/Tools/faqwiz/faqw.py
+find . -type f -print0 | xargs -0 grep -l /usr/local/bin/python |
+ while read file
do
sed 's|^#!.*python|#!/usr/bin/env python'"%{binsuffix}"'|' \
"$RPM_BUILD_ROOT"/"$file" >/tmp/fix-python-path.$$