summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2014-04-09 16:43:28 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2014-04-09 16:43:28 +0200
commitad7a87dbd519047d98fd8e66a56703d69475bf4a (patch)
treee31e43747aa7b5785d67df7f1c712ce52d4b606f
parent14d62392b747746d2fe96f38deb4b4071b5e7324 (diff)
downloadgnutls-ad7a87dbd519047d98fd8e66a56703d69475bf4a.tar.gz
update gmplib location
-rw-r--r--cross.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/cross.mk b/cross.mk
index 0153ab772a..7727ed7d98 100644
--- a/cross.mk
+++ b/cross.mk
@@ -83,8 +83,8 @@ $(P11_KIT_DIR)/.installed: $(P11_KIT_DIR)/.configured
touch $@
$(GMP_DIR)/.configured:
- test -f $(GMP_FILE) || wget ftp://ftp.gmplib.org/pub/$(GMP_SERV_DIR)/$(GMP_FILE)
- test -f $(GMP_FILE).sig || wget ftp://ftp.gmplib.org/pub/$(GMP_SERV_DIR)/$(GMP_FILE).sig
+ test -f $(GMP_FILE) || wget ftp://ftp.gmplib.org/pub/$(GMP_DIR)/$(GMP_FILE)
+ test -f $(GMP_FILE).sig || wget ftp://ftp.gmplib.org/pub/$(GMP_DIR)/$(GMP_FILE).sig
gpg --verify $(GMP_FILE).sig
test -d $(GMP_DIR) || tar -xf $(GMP_FILE)
cd $(GMP_DIR) && LDFLAGS="$(LDFLAGS)" $(CONFIG_ENV) ./configure $(CONFIG_FLAGS) --enable-fat --exec-prefix=$(LIB_DIR) --oldincludedir=$(HEADERS_DIR) && cd ..