gnutar is in the Darwin base system
[summon-arm-toolchain.git] / summon-arm-toolchain
index eb729453ca7ec385bd42f948ad20ac2d82a2f822..708869c7383b2fe885edd75cbe71a97ddca97e86 100755 (executable)
@@ -116,12 +116,12 @@ case "$(uname)" in
        echo "Found Darwin OS."
 
        # darwin dependencies
-       DARWINDEPS="gnu-tar wget mpfr libmpc gmp"
+       DARWINDEPS="wget mpfr libmpc gmp"
   DARWINDEPSCOUNT=4
 
-  echo "Installing dependencies"
+  echo "Installing dependencies ..."
   if ! which brew > /dev/null; then
-    echo "homebrew not installed."
+    echo "Homebrew not installed."
   else
       brew install ${DARWINDEPS} | (grep -v '^Warning: Formula already installed: ' || true)
   fi
@@ -155,7 +155,7 @@ esac
 function fetch {
     if [ ! -e ${STAMPS}/$1.fetch ]; then
         log "Downloading $1 sources..."
-        wget -c --no-passive-ftp $2
+        wget -c $2
         touch ${STAMPS}/$1.fetch
     fi
 }