diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-09-12 00:11:12 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-09-12 00:11:12 +0200 |
commit | 26b3a17f58e9af55a36d1455c2a61ca4f22225b3 (patch) | |
tree | 6a24a76829f4bf916c3208c854ad22898fd9e7be | |
parent | 0233ac8534a367afba9c293f0485cb8af7d67114 (diff) | |
download | crosstool-ng-26b3a17f58e9af55a36d1455c2a61ca4f22225b3.tar.gz crosstool-ng-26b3a17f58e9af55a36d1455c2a61ca4f22225b3.tar.bz2 crosstool-ng-26b3a17f58e9af55a36d1455c2a61ca4f22225b3.zip |
libc/eglibc: fix download
Fix the test to check if download is forced.
-rw-r--r-- | scripts/build/libc/eglibc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/libc/eglibc.sh b/scripts/build/libc/eglibc.sh index 245cda86..340a02f2 100644 --- a/scripts/build/libc/eglibc.sh +++ b/scripts/build/libc/eglibc.sh @@ -54,7 +54,7 @@ do_libc_get() { -a -f "${CT_LOCAL_TARBALLS_DIR}/${eglibc_linuxthreads}" \ -a -f "${CT_LOCAL_TARBALLS_DIR}/${eglibc_localedef}" \ -a -f "${CT_LOCAL_TARBALLS_DIR}/${eglibc_ports}" \ - "${CT_FORCE_DOWNLOAD}" != "y" \ + -a "${CT_FORCE_DOWNLOAD}" != "y" \ ]; then CT_DoLog DEBUG "Got 'eglibc-${CT_LIBC_VERSION}' from local storage" for file in ${eglibc} ${eglibc_linuxthreads} ${eglibc_localedef} ${eglibc_ports}; do |