summaryrefslogtreecommitdiffstats
path: root/src/ilmbase.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/ilmbase.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/ilmbase.mk')
-rw-r--r--src/ilmbase.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ilmbase.mk b/src/ilmbase.mk
index 10c2e29..fc588ee 100644
--- a/src/ilmbase.mk
+++ b/src/ilmbase.mk
@@ -11,7 +11,7 @@ $(PKG)_DEPS := gcc
define $(PKG)_UPDATE
wget -q -O- 'http://www.openexr.com/downloads.html' | \
grep 'ilmbase-' | \
- $(SED) -n 's,.*ilmbase-\([1-9][^>]*\)\.tar.*,\1,p' | \
+ $(SED) -n 's,.*ilmbase-\([0-9][^>]*\)\.tar.*,\1,p' | \
head -1
endef