diff options
author | sr55 <[email protected]> | 2007-04-05 16:46:25 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-04-05 16:46:25 +0000 |
commit | d609c755e48fb040f5e3f5538fb408cf95bb7eb0 (patch) | |
tree | d1ec1541083be42be4918ec920ebf42b9a4e6067 /DownloadCygWinContribBinaries.sh | |
parent | 50b599d43307ac4829627e92f775dfa9052bf444 (diff) |
Uploaded new contrib packaged which is compiled under GCC4 - Fixes many stack dump issues under CYGWIN
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@478 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'DownloadCygWinContribBinaries.sh')
-rw-r--r-- | DownloadCygWinContribBinaries.sh | 30 |
1 files changed, 12 insertions, 18 deletions
diff --git a/DownloadCygWinContribBinaries.sh b/DownloadCygWinContribBinaries.sh index df4b78fdd..5973dc9ef 100644 --- a/DownloadCygWinContribBinaries.sh +++ b/DownloadCygWinContribBinaries.sh @@ -1,18 +1,12 @@ -#! /bin/sh - - -HOST=http://download.m0k.org -FILE=contribbin-cygwin-0001.tar.gz -URL=$HOST/handbrake/contrib/$FILE -# Check for internet connectivity -#if ! host $HOST > /dev/null 2>&1; then -# echo "Please connect to the Internet (could not resolve $HOST)." -# exit 1 -#fi - -# Get and install the package -echo "Getting contribs ($VERSION)..." -( cd contrib && rm -f contribbin-cygwin-0001.tar.gz && wget $URL && rm -Rf lib include && tar xzf contribbin-cygwin-0001.tar.gz && ranlib lib/*.a ) || exit 1 - -exit 0 - +#! /bin/sh
+
+HOST=http://download.m0k.org
+FILE=contribbin-cygwin-0002.tar.gz
+URL=$HOST/handbrake/contrib/$FILE
+
+# Get and install the package
+echo "Getting contribs ($VERSION)..."
+( cd contrib && rm -f contribbin-cygwin-0002.tar.gz && wget $URL && rm -Rf lib include && tar xzf contribbin-cygwin-0002.tar.gz && ranlib lib/*.a ) || exit 1
+
+exit 0
+
|