diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2011-03-13 10:39:33 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2011-03-13 10:39:33 (GMT) |
commit | 5dba30f2caf12d6fea1b3f168834526e856d6f0a (patch) | |
tree | 7a7643f1494756b2b07282b3dc4f7ee6828f7b0c /src/ftgl.mk | |
parent | eabbadfce9eddeeb5a40ca4d0d6a65ccbb438a09 (diff) | |
download | mxe-5dba30f2caf12d6fea1b3f168834526e856d6f0a.zip mxe-5dba30f2caf12d6fea1b3f168834526e856d6f0a.tar.gz mxe-5dba30f2caf12d6fea1b3f168834526e856d6f0a.tar.bz2 |
bugfix in version recognition of package ftgl
Diffstat (limited to 'src/ftgl.mk')
-rw-r--r-- | src/ftgl.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ftgl.mk b/src/ftgl.mk index 2bdff56..53402a5 100644 --- a/src/ftgl.mk +++ b/src/ftgl.mk @@ -14,7 +14,7 @@ $(PKG)_DEPS := gcc freetype define $(PKG)_UPDATE wget -q -O- 'http://sourceforge.net/projects/ftgl/files/FTGL Source/' | \ - $(SED) -n 's,.*>\([0-9][^<]*\).*,\1,p' | \ + $(SED) -n 's,.*title="/FTGL Source/\([0-9][^"]*\)/".*,\1,p' | \ head -1 endef |