summaryrefslogtreecommitdiff
path: root/cross.mk
diff options
context:
space:
mode:
Diffstat (limited to 'cross.mk')
-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 ..