blob: 1ce54284cacbef7f9dfb1fb997c34f620cdc48d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$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
|