diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-12-01 02:44:21 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2010-12-01 02:44:21 (GMT) |
commit | 9c11e9e39b4002a48d5216e30219ea5c975af9d0 (patch) | |
tree | 91266a53524dc07aa67d295996aa445236faf517 /src/expat.mk | |
parent | 5099f2de1c4e58a8825e4232ae342930659a8ff4 (diff) | |
download | mxe-9c11e9e39b4002a48d5216e30219ea5c975af9d0.zip mxe-9c11e9e39b4002a48d5216e30219ea5c975af9d0.tar.gz mxe-9c11e9e39b4002a48d5216e30219ea5c975af9d0.tar.bz2 |
improved update script of packages: boost cppunit cunit expat freetype glew pcre pdcurses wxwidgets
Diffstat (limited to 'src/expat.mk')
-rw-r--r-- | src/expat.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/expat.mk b/src/expat.mk index a128595..9bbc0c6 100644 --- a/src/expat.mk +++ b/src/expat.mk @@ -13,9 +13,9 @@ $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/expat/expat/$($(PKG)_VER $(PKG)_DEPS := gcc define $(PKG)_UPDATE - $(call SOURCEFORGE_FILES,http://sourceforge.net/projects/expat/files/) | \ - $(SED) -n 's,.*expat-\([0-9][^>]*\)\.tar.*,\1,p' | \ - tail -1 + wget -q -O- 'http://sourceforge.net/projects/expat/files/expat/' | \ + $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \ + head -1 endef define $(PKG)_BUILD |