diff options
author | LM <lmemsm@gmail.com> | 2012-03-25 12:08:30 (GMT) |
---|---|---|
committer | LM <lmemsm@gmail.com> | 2012-03-25 12:08:30 (GMT) |
commit | 2f374210cb9e2662325283a7c33f7ecd8a472a2c (patch) | |
tree | d332af83e20f7cd590e680b1be2f01f7af168340 | |
parent | 1a2f5c32312ed0e99b93bc5d5d37ba2d8321875b (diff) | |
download | mxe-2f374210cb9e2662325283a7c33f7ecd8a472a2c.zip mxe-2f374210cb9e2662325283a7c33f7ecd8a472a2c.tar.gz mxe-2f374210cb9e2662325283a7c33f7ecd8a472a2c.tar.bz2 |
package libffi: fix update macro
-rw-r--r-- | src/libffi.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libffi.mk b/src/libffi.mk index 09fc2bc..e397ce2 100644 --- a/src/libffi.mk +++ b/src/libffi.mk @@ -13,7 +13,7 @@ $(PKG)_URL := ftp://sourceware.org/pub/$(PKG)/$($(PKG)_FILE) $(PKG)_DEPS := gcc define $(PKG)_UPDATE - wget -q --no-check-certificate -O- 'http://github.com/atgreen/libffi/tags' | \ + wget -q --no-check-certificate -O- 'https://github.com/atgreen/libffi/tags' | \ grep '<a href="/atgreen/libffi/tarball/' | \ $(SED) -n 's,.*href="/atgreen/libffi/tarball/v\([0-9][^"]*\)".*,\1,p' | \ head -1 |