diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-01-28 22:36:44 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-01-28 22:36:44 +0000 |
commit | a2d32f22575f3864611dfc62ba84d4f5bcaa42d0 (patch) | |
tree | 6b82cdcb99bc4e65723554446607ede3079725a8 /scripts/build/cc | |
parent | 1843a3b45c7064d8641fb49d7fa7f3a8e4c1f02c (diff) | |
download | crosstool-ng-a2d32f22575f3864611dfc62ba84d4f5bcaa42d0.tar.gz crosstool-ng-a2d32f22575f3864611dfc62ba84d4f5bcaa42d0.tar.bz2 crosstool-ng-a2d32f22575f3864611dfc62ba84d4f5bcaa42d0.zip |
Add a missing line continuation '\' in the gcc retrieval function.
Spotted by Doug Reiland <dreiland@hotmail.com>.
/trunk/scripts/build/cc/gcc.sh | 2 1 1 0 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Diffstat (limited to 'scripts/build/cc')
-rw-r--r-- | scripts/build/cc/gcc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh index 80f18b60..81be6f4e 100644 --- a/scripts/build/cc/gcc.sh +++ b/scripts/build/cc/gcc.sh @@ -11,7 +11,7 @@ do_cc_get() { # gcc-3.3.3 lives in releases/gcc-3.3.3, while gcc-2.95.* isn't in a # subdirectory! You bastard! CT_GetFile "gcc-${CT_CC_VERSION}" \ - {ftp,http}://ftp.gnu.org/gnu/gcc{,{,/releases}/gcc-${CT_CC_VERSION}} + {ftp,http}://ftp.gnu.org/gnu/gcc{,{,/releases}/gcc-${CT_CC_VERSION}} \ ftp://ftp.irisa.fr/pub/mirrors/gcc.gnu.org/gcc/releases/gcc-${CT_CC_VERSION} # Starting with GCC 4.3, ecj is used for Java, and will only be # built if the configure script finds ecj.jar at the top of the |