diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2009-03-02 05:00:03 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2009-03-02 05:00:03 (GMT) |
commit | 5deaef6eb049ac8dc306e17153977751863aa069 (patch) | |
tree | 9cbbc323f7d3547281b75eb05917cdd7d228ad27 /src/gcc.mk | |
parent | b05d179c96ba05850b23be6bdeebade4441b7622 (diff) | |
download | mxe-5deaef6eb049ac8dc306e17153977751863aa069.zip mxe-5deaef6eb049ac8dc306e17153977751863aa069.tar.gz mxe-5deaef6eb049ac8dc306e17153977751863aa069.tar.bz2 |
improved the regexes for package version recognition
Diffstat (limited to 'src/gcc.mk')
-rw-r--r-- | src/gcc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ $(PKG)_DEPS := pkg_config mingwrt w32api binutils gcc-gmp gcc-mpfr gcc-core g define $(PKG)_UPDATE wget -q -O- 'http://sourceforge.net/project/showfiles.php?group_id=200665&package_id=238347' | \ grep 'gcc-' | \ - $(SED) -n 's,.*gcc-\([4-9][^>]*\)-srcbase\.zip.*,\1,p' | \ + $(SED) -n 's,.*gcc-\([0-9][^>]*\)-srcbase\.zip.*,\1,p' | \ head -1 endef |