]> git.saurik.com Git - cydia.git/blobdiff - sysroot.sh
Use the correct color for 'Loading...'.
[cydia.git] / sysroot.sh
index 71521dbff4958e042021c860982f14b3d85c5825..4815b242f375d9f9ce777286b5fcc64c73e96e18 100755 (executable)
@@ -11,6 +11,18 @@ set -e
 shopt -s extglob
 shopt -s nullglob
 
+for command in unlzma wget; do
+    if ! which "${command}" &>/dev/null; then
+        echo "Cannot run \`${command}\`. Please read compiling.txt." 1>&2
+        exit 1
+    fi
+done
+
+if tar --help | grep bsdtar &>/dev/null; then
+    echo "Running \`tar\` is bsdtar :(. Please read compiling.txt." 1>&2
+    exit 1
+fi
+
 rm -rf sysroot
 mkdir sysroot
 cd sysroot
@@ -107,7 +119,7 @@ else
     ')
 fi
 
-for framework in ApplicationServices CoreServices IOKit IOSurface JavaScriptCore QuartzCore WebKit; do
+for framework in ApplicationServices CoreServices IOKit IOSurface JavaScriptCore WebKit; do
     ln -s /System/Library/Frameworks/"${framework}".framework/Headers "${framework}"
 done