mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-22 22:25:51 +01:00
Apparently not everyone wants to build Universal binaries. Return valid
Archictecture detection for inclusion into final dmg naming. svn:r7039
This commit is contained in:
parent
38f0a7f93f
commit
6410baf624
1 changed files with 5 additions and 1 deletions
|
@ -32,7 +32,11 @@ if [ "XX$VERSION" = 'XX' ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
ARCH="universal"
|
||||
if [ -x /usr/bin/arch ]; then
|
||||
ARCH=`/usr/bin/arch`
|
||||
else
|
||||
ARCH="unknown"
|
||||
fi
|
||||
|
||||
## Determine OSX Version
|
||||
# map version to name
|
||||
|
|
Loading…
Add table
Reference in a new issue