summaryrefslogtreecommitdiffstats
path: root/src/gcc-g++.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2009-03-02 05:00:03 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2009-03-02 05:00:03 (GMT)
commit5deaef6eb049ac8dc306e17153977751863aa069 (patch)
tree9cbbc323f7d3547281b75eb05917cdd7d228ad27 /src/gcc-g++.mk
parentb05d179c96ba05850b23be6bdeebade4441b7622 (diff)
downloadmxe-5deaef6eb049ac8dc306e17153977751863aa069.zip
mxe-5deaef6eb049ac8dc306e17153977751863aa069.tar.gz
mxe-5deaef6eb049ac8dc306e17153977751863aa069.tar.bz2
improved the regexes for package version recognition
Diffstat (limited to 'src/gcc-g++.mk')
-rw-r--r--src/gcc-g++.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gcc-g++.mk b/src/gcc-g++.mk
index 22334f5..57bb7f6 100644
--- a/src/gcc-g++.mk
+++ b/src/gcc-g++.mk
@@ -11,6 +11,6 @@ $(PKG)_DEPS :=
define $(PKG)_UPDATE
wget -q -O- 'http://sourceforge.net/project/showfiles.php?group_id=200665&package_id=238462' | \
grep 'gcc-g++-' | \
- $(SED) -n 's,.*gcc-g++-\([4-9][^>]*\)\.tar.*,\1,p' | \
+ $(SED) -n 's,.*gcc-g++-\([0-9][^>]*\)\.tar.*,\1,p' | \
head -1
endef