pkgsrc/lang/python24/patches/patch-ar
wiz 1e8671d641 Update to 2.4.4:
We are pleased to announce the release of Python 2.4.4 (FINAL), a
bugfix release of Python 2.4, on October 18, 2006.

Important: 2.4.4 includes a security fix (PSF-2006-001) for the
repr() of unicode strings in wide unicode builds (UCS-4) [does not
affect pkgsrc]

Python 2.4 is now in bugfix-only mode; no new features are being
added. At least 80 bugs have been squished since Python 2.4.3,
including a number of bugs and potential bugs found by with the
Coverity and Klocwork static analysis tools. We'd like to offer
our thanks to both these firms for making this available for open
source projects - see their websites if you're interested.
2007-06-08 14:16:15 +00:00

17 lines
600 B
Text

$NetBSD: patch-ar,v 1.1 2007/06/08 14:16:17 wiz Exp $
--- Mac/BuildScript/scripts/postflight.patch-profile.orig 2006-10-08 18:20:10.000000000 +0000
+++ Mac/BuildScript/scripts/postflight.patch-profile
@@ -36,10 +36,10 @@ esac
# Now ensure that our bin directory is on $P and before /usr/bin at that
for elem in `echo $P | tr ':' ' '`
do
- if [ "${elem}" == "${PYTHON_ROOT}/bin" ]; then
+ if [ "${elem}" = "${PYTHON_ROOT}/bin" ]; then
echo "All right, you're a python lover already"
exit 0
- elif [ "${elem}" == "/usr/bin" ]; then
+ elif [ "${elem}" = "/usr/bin" ]; then
break
fi
done