--- Misc/build.sh.orig 2009-04-07 19:27:36.000000000 +0000 +++ Misc/build.sh @@ -275,7 +275,7 @@ fi F="make-doc-dist.out" start=`current_time` -if [ $conflict_count == 0 ]; then +if [ $conflict_count = 0 ]; then make dist >& ../build/$F err=$? fi --- Mac/BuildScript/scripts/postflight.patch-profile.orig 2006-10-08 14:19:28.000000000 -0400 +++ 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