Makefile: fix the fetch-dlls target

This commit is contained in:
Ștefan Talpalaru 2019-04-24 20:59:16 +02:00
parent 35609c0cb8
commit da5900b706
No known key found for this signature in database
GPG Key ID: CBF7934204F1B6F9
1 changed files with 2 additions and 2 deletions

View File

@ -290,6 +290,6 @@ fetch-dlls: | build deps
$(UNZIP) $(ROCKSDB_ARCHIVE) && \
cp -a $(ROCKSDB_DIR)/*.dll . && \
$(UNZIP) dlls.zip && \
mkdir -p vendor/nim-beacon-chain/build && \
cp -a *.dll vendor/nim-beacon-chain/build/
mkdir -p ../vendor/nim-beacon-chain/build && \
cp -a *.dll ../vendor/nim-beacon-chain/build/
endif