diff options
author | Alexey Neyman <stilor@att.net> | 2017-03-03 16:45:05 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-03-03 16:45:05 -0800 |
commit | 865a095d70c7f3a7b7f657f68da9e3b11cd1be6e (patch) | |
tree | 69142c64e7fe6f12fcaf91f89bda13fc9530cee2 /scripts/build/libc | |
parent | 1e060114a26d6033c93ca67d0ca44a234c762fa1 (diff) | |
download | crosstool-ng-865a095d70c7f3a7b7f657f68da9e3b11cd1be6e.tar.gz crosstool-ng-865a095d70c7f3a7b7f657f68da9e3b11cd1be6e.tar.bz2 crosstool-ng-865a095d70c7f3a7b7f657f68da9e3b11cd1be6e.zip |
Do not pretend we're downloading anything
... when we're actually don't.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/build/libc')
-rw-r--r-- | scripts/build/libc/mingw.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/build/libc/mingw.sh b/scripts/build/libc/mingw.sh index eb04cb6b..a2c25ec6 100644 --- a/scripts/build/libc/mingw.sh +++ b/scripts/build/libc/mingw.sh @@ -4,16 +4,14 @@ CT_WINAPI_VERSION_DOWNLOADED= do_libc_get() { - CT_DoStep INFO "Fetching mingw-w64 source for ${CT_WINAPI_VERSION}" if [ "${CT_WINAPI_VERSION}" = "devel" ]; then CT_GetGit "mingw-w64" "ref=HEAD" "git://git.code.sf.net/p/mingw-w64/mingw-w64" CT_WINAPI_VERSION_DOWNLOADED - CT_DoLog EXTRA "Fetched as ${CT_WINAPI_VERSION_DOWNLOADED}" + CT_DoLog DEBUG "Fetched mingw-w64 as ${CT_WINAPI_VERSION_DOWNLOADED}" else CT_GetFile "mingw-w64-v${CT_WINAPI_VERSION}" \ http://downloads.sourceforge.net/sourceforge/mingw-w64 CT_WINAPI_VERSION_DOWNLOADED=v${CT_WINAPI_VERSION} fi - CT_EndStep } do_libc_extract() { |