diff options
author | Tony Theodore <tonyt@logyst.com> | 2014-03-07 18:23:52 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2014-03-07 18:23:52 (GMT) |
commit | a2055a7007b15318ec00d78d33b5ef616bf55aa3 (patch) | |
tree | cc7691d4b5abcd5ab86fc442520f766c2cb99d51 /src/bullet.mk | |
parent | 81213e686e3855c0728f2f5ca286b90b04189adf (diff) | |
download | mxe-a2055a7007b15318ec00d78d33b5ef616bf55aa3.zip mxe-a2055a7007b15318ec00d78d33b5ef616bf55aa3.tar.gz mxe-a2055a7007b15318ec00d78d33b5ef616bf55aa3.tar.bz2 |
package bullet: fix update macro
Diffstat (limited to 'src/bullet.mk')
-rw-r--r-- | src/bullet.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bullet.mk b/src/bullet.mk index 1e4c37f..085478b 100644 --- a/src/bullet.mk +++ b/src/bullet.mk @@ -12,7 +12,7 @@ $(PKG)_DEPS := gcc define $(PKG)_UPDATE $(WGET) -q -O- 'http://code.google.com/p/bullet/downloads/list?sort=-uploaded' | \ - $(SED) -n 's,.*bullet-\([0-9][^<]*\)\.tgz,\1,p' | \ + $(SED) -n 's,.*bullet-\([0-9][^<]*\)\.tgz.*,\1,p' | \ head -1 endef |