mirror of
https://github.com/tpoechtrager/osxcross.git
synced 2024-11-20 18:33:06 +03:00
Attempt to support "any" packages that only support one arch.
This commit is contained in:
parent
56d8ec4ec9
commit
66ff696a0e
@ -323,6 +323,9 @@ getPkgUrl()
|
||||
if [ -z "$pkg" ]; then
|
||||
pkg=$(echo "$pkgs" | grep $OSXVERSION | grep "noarch" | uniq | tail -n1)
|
||||
fi
|
||||
if [ -z "$pkg" ]; then
|
||||
pkg=$(echo "$pkgs" | grep "any" | grep $ARCH | uniq | tail -n1)
|
||||
fi
|
||||
if [ -z "$pkg" ]; then
|
||||
pkg=$(echo "$pkgs" | grep "any" | grep "noarch" | uniq | tail -n1)
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user