summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2011-04-29 07:13:21 (GMT)
committerMark Brand <mabrand@mabrand.nl>2011-04-29 07:13:21 (GMT)
commit055bc0c689500ca573e2d77d103a5b14c7ce87b8 (patch)
treed789fb2f5af4cbaece8ea8d7969635c98e9840ee
parentd7531909a6eb7f07c6b3b026ad0d9623c1326e8b (diff)
downloadmxe-055bc0c689500ca573e2d77d103a5b14c7ce87b8.zip
mxe-055bc0c689500ca573e2d77d103a5b14c7ce87b8.tar.gz
mxe-055bc0c689500ca573e2d77d103a5b14c7ce87b8.tar.bz2
package gcc: fix update macro
-rw-r--r--src/gcc.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gcc.mk b/src/gcc.mk
index e361fc5..2fc39af 100644
--- a/src/gcc.mk
+++ b/src/gcc.mk
@@ -16,7 +16,7 @@ $(PKG)_DEPS := mingwrt w32api binutils gcc-gmp gcc-mpc gcc-mpfr
define $(PKG)_UPDATE
wget -q -O- 'http://ftp.gnu.org/gnu/gcc/?C=M;O=D' | \
$(SED) -n 's,.*<a href="gcc-\([0-9][^"]*\)/".*,\1,p' | \
- grep -v '^4\.[43]\.' | \
+ grep -v '^4\.[543]\.' | \
head -1
endef