diff options
author | Maxime Hadjinlian <maxime.hadjinlian@gmail.com> | 2018-04-02 20:36:23 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-02 20:50:52 +0200 |
commit | 7ce411c452d8afc41a05f76d241ed6443bc91e2d (patch) | |
tree | 66093f3519a0ac5137fccb64c5490cc2967dda3b | |
parent | e8ddb6998f3f894022e683dd8726bfdee46b0cc3 (diff) | |
download | buildroot-7ce411c452d8afc41a05f76d241ed6443bc91e2d.tar.gz buildroot-7ce411c452d8afc41a05f76d241ed6443bc91e2d.zip |
cryptopp: use HOST_CRYPTOPP_DL_DIR instead of CRYPTOPP_DL_DIR
The infrastructure only provides HOST_CRYPTOPP_DL_DIR, because this
package is host only. Ideally the infra should provide CRYPTOPP_DL_DIR,
but it doesn't currently, and that requires more significant changes.
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/cryptopp/cryptopp.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/cryptopp/cryptopp.mk b/package/cryptopp/cryptopp.mk index 6da39b09f2..b4997aba9d 100644 --- a/package/cryptopp/cryptopp.mk +++ b/package/cryptopp/cryptopp.mk @@ -12,7 +12,7 @@ CRYPTOPP_LICENSE_FILES = License.txt CRYPTOPP_INSTALL_STAGING = YES define HOST_CRYPTOPP_EXTRACT_CMDS - $(UNZIP) $(CRYPTOPP_DL_DIR)/$(CRYPTOPP_SOURCE) -d $(@D) + $(UNZIP) $(HOST_CRYPTOPP_DL_DIR)/$(CRYPTOPP_SOURCE) -d $(@D) endef HOST_CRYPTOPP_MAKE_OPTS = \ |