changeset 1864:0ac0306fc662

Improved filtering of bad binutils versions
author Volker Grabsch <vog@notjusthosting.com>
date Tue, 15 Nov 2011 16:30:46 +0100
parents 5fc669ab661a
children aa8e9bab281d
files src/binutils.mk
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/binutils.mk	Sun Oct 23 02:15:55 2011 +1100
+++ b/src/binutils.mk	Tue Nov 15 16:30:46 2011 +0100
@@ -16,7 +16,7 @@
 define $(PKG)_UPDATE
     wget -q -O- 'http://ftp.gnu.org/gnu/binutils/?C=M;O=D' | \
     $(SED) -n 's,.*<a href="binutils-\([0-9][^"]*\)\.tar.*,\1,p' | \
-    grep '^2\.[2-9][1-9]' | \
+    grep -v '^2\.1' | \
     head -1
 endef