diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-01-23 21:05:20 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2010-01-23 21:05:20 (GMT) |
commit | 122cf6a14777f0b536c93ec183590f0d1c3ae5f7 (patch) | |
tree | dbbdd061e88db8822f8059a1c2a5310473f0c742 | |
parent | a0786be83fa42cd9096bae3aca965e92dda7de03 (diff) | |
download | mxe-122cf6a14777f0b536c93ec183590f0d1c3ae5f7.zip mxe-122cf6a14777f0b536c93ec183590f0d1c3ae5f7.tar.gz mxe-122cf6a14777f0b536c93ec183590f0d1c3ae5f7.tar.bz2 |
bugfix: don't hardcode the version number in the download URL, etc. of package gsoap
-rw-r--r-- | src/gsoap.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gsoap.mk b/src/gsoap.mk index da8969e..4641f52 100644 --- a/src/gsoap.mk +++ b/src/gsoap.mk @@ -6,10 +6,10 @@ PKG := gsoap $(PKG)_IGNORE := $(PKG)_VERSION := 2.7.15 $(PKG)_CHECKSUM := 9c93d71103ec70074fa8db43d0fe1d3a1fff8d55 -$(PKG)_SUBDIR := gsoap-2.7 +$(PKG)_SUBDIR := gsoap-$(call SHORT_PKG_VERSION,$(PKG)) $(PKG)_FILE := gsoap_$($(PKG)_VERSION).tar.gz $(PKG)_WEBSITE := http://gsoap2.sourceforge.net/ -$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/gsoap2/gSOAP/2.7.15 stable/$($(PKG)_FILE) +$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/gsoap2/gSOAP/$($(PKG)_VERSION) stable/$($(PKG)_FILE) $(PKG)_DEPS := gcc openssl define $(PKG)_UPDATE |