diff options
author | Andrew Lewman <andrew@torproject.org> | 2009-10-12 08:36:39 -0400 |
---|---|---|
committer | Andrew Lewman <andrew@torproject.org> | 2009-10-12 08:36:39 -0400 |
commit | c0ad6909247161a4de00051f2b6611be16eaa8e7 (patch) | |
tree | c00fd984f8481033b670c7081c73eba0d2893ff8 /contrib/osx | |
parent | ecae6f764a4ff4477ef5c421106a5fbd9e954a10 (diff) | |
download | tor-c0ad6909247161a4de00051f2b6611be16eaa8e7.tar.gz tor-c0ad6909247161a4de00051f2b6611be16eaa8e7.zip |
updated naming.
Diffstat (limited to 'contrib/osx')
-rwxr-xr-x | contrib/osx/Tor | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/osx/Tor b/contrib/osx/Tor index 0660fd7c8d..bcddc0c42b 100755 --- a/contrib/osx/Tor +++ b/contrib/osx/Tor @@ -25,9 +25,9 @@ if [ -x /usr/bin/sw_vers ]; then # the OS version OSVER=`/usr/bin/sw_vers | grep ProductVersion | cut -f2 | cut -d"." -f1,2` case "$OSVER" in - "10.6") ARCH="universal";; - "10.5") ARCH="universal";; - "10.4") ARCH="universal";; + "10.6") ARCH="i386";; + "10.5") ARCH="i386";; + "10.4") ARCH="i386";; "10.3") ARCH="ppc";; "10.2") ARCH="ppc";; "10.1") ARCH="ppc";; @@ -37,7 +37,7 @@ else ARCH="unknown" fi -if [ $ARCH != "universal" ]; then +if [ $ARCH != "i386" ]; then export EVENT_NOKQUEUE=1 fi |