summaryrefslogtreecommitdiffstats
path: root/src/glib.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2010-04-10 04:38:33 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2010-04-10 04:38:33 (GMT)
commit06343b4bf0c436ee22da7e601b839526a74954a6 (patch)
tree328053a79d52fc3e68b8bc6597fd08c2b11db63f /src/glib.mk
parent772edcfff511008f433920254bafea47b3d0e9a0 (diff)
downloadmxe-06343b4bf0c436ee22da7e601b839526a74954a6.zip
mxe-06343b4bf0c436ee22da7e601b839526a74954a6.tar.gz
mxe-06343b4bf0c436ee22da7e601b839526a74954a6.tar.bz2
corrected regexes in exceptions rules of version recognition
Diffstat (limited to 'src/glib.mk')
-rw-r--r--src/glib.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glib.mk b/src/glib.mk
index 4f35860..0d766dc 100644
--- a/src/glib.mk
+++ b/src/glib.mk
@@ -16,7 +16,7 @@ define $(PKG)_UPDATE
wget -q -O- 'http://git.gnome.org/cgit/glib/refs/tags' | \
grep '<a href=' | \
$(SED) -n "s,.*<a href='[^']*/tag/?id=\\([0-9][^']*\\)'.*,\\1,p" | \
- grep -v '2\.22\.' | \
+ grep -v '^2\.22\.' | \
head -1
endef