mirror of
https://github.com/Relintai/osxcross.git
synced 2025-02-08 02:55:56 +01:00
Merge pull request #12 from TheAssassin/master
Fixes for get_dependencies.sh for Debian based systems.
This commit is contained in:
commit
d25b6ae907
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env sh
|
||||||
#
|
#
|
||||||
# auto-install dependency packages using the systems package manager.
|
# auto-install dependency packages using the systems package manager.
|
||||||
# this assumes you are running as root or are using sudo
|
# this assumes you are running as root or are using sudo
|
||||||
@ -42,10 +42,8 @@ get_mageia_deps()
|
|||||||
|
|
||||||
get_debian_deps()
|
get_debian_deps()
|
||||||
{
|
{
|
||||||
for pkg in build-essential clang llvm-devel automake autogen libtool \
|
apt-get install -y --force-yes clang llvm-dev automake autogen \
|
||||||
libxml2-dev uuid-dev libssl-dev bash patch make; do
|
libtool libxml2-dev uuid-dev libssl-dev bash patch make
|
||||||
apt-get -y --force-yes install $pkg;
|
|
||||||
done
|
|
||||||
}
|
}
|
||||||
|
|
||||||
unknown()
|
unknown()
|
||||||
|
Loading…
Reference in New Issue
Block a user