diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2014-04-09 16:43:28 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2014-04-09 16:43:28 +0200 |
commit | ad7a87dbd519047d98fd8e66a56703d69475bf4a (patch) | |
tree | e31e43747aa7b5785d67df7f1c712ce52d4b606f /cross.mk | |
parent | 14d62392b747746d2fe96f38deb4b4071b5e7324 (diff) | |
download | gnutls-ad7a87dbd519047d98fd8e66a56703d69475bf4a.tar.gz |
update gmplib location
Diffstat (limited to 'cross.mk')
-rw-r--r-- | cross.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 .. |