diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-04-10 04:38:33 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2010-04-10 04:38:33 (GMT) |
commit | 06343b4bf0c436ee22da7e601b839526a74954a6 (patch) | |
tree | 328053a79d52fc3e68b8bc6597fd08c2b11db63f /src/openscenegraph.mk | |
parent | 772edcfff511008f433920254bafea47b3d0e9a0 (diff) | |
download | mxe-06343b4bf0c436ee22da7e601b839526a74954a6.zip mxe-06343b4bf0c436ee22da7e601b839526a74954a6.tar.gz mxe-06343b4bf0c436ee22da7e601b839526a74954a6.tar.bz2 |
corrected regexes in exceptions rules of version recognition
Diffstat (limited to 'src/openscenegraph.mk')
-rw-r--r-- | src/openscenegraph.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openscenegraph.mk b/src/openscenegraph.mk index 68e772c..f0d150f 100644 --- a/src/openscenegraph.mk +++ b/src/openscenegraph.mk @@ -16,7 +16,7 @@ define $(PKG)_UPDATE wget -q -O- 'http://www.openscenegraph.org/projects/osg/browser/OpenSceneGraph/tags?order=date&desc=1' | \ grep '<a ' | \ $(SED) -n 's,.*>OpenSceneGraph-\([0-9][^<]*\)<.*,\1,p' | \ - grep -v '2\.9\.' | \ + grep -v '^2\.9\.' | \ head -1 endef |