diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-11-19 17:44:52 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-11-19 17:44:52 (GMT) |
commit | b82c20737338fe32f21370945b5a79fe9bbda5fd (patch) | |
tree | 4e28a10916d05eed1ac51e707cb99c98916158b7 /Mac/BuildScript | |
parent | 3c1928a595ddb5d413c252804da45ee78ed68543 (diff) | |
download | cpython-b82c20737338fe32f21370945b5a79fe9bbda5fd.zip cpython-b82c20737338fe32f21370945b5a79fe9bbda5fd.tar.gz cpython-b82c20737338fe32f21370945b5a79fe9bbda5fd.tar.bz2 |
Merged revisions 76407 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76407 | ronald.oussoren | 2009-11-19 18:42:51 +0100 (Thu, 19 Nov 2009) | 4 lines
Don't use the '==' operator with test, that's an unportable bash-ism.
(Issue 7179)
........
Diffstat (limited to 'Mac/BuildScript')
-rwxr-xr-x | Mac/BuildScript/scripts/postflight.patch-profile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/BuildScript/scripts/postflight.patch-profile b/Mac/BuildScript/scripts/postflight.patch-profile index c33fbea..cbf4162 100755 --- a/Mac/BuildScript/scripts/postflight.patch-profile +++ b/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 |