Skip to content

Commit c8ae267

Browse files
committed
[LLVM/RV] fix logic mistake in build-script
1 parent 4767300 commit c8ae267

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/llvm.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ endif # LLVM_GIT_VER
383383
# Debug output only. Disable pager and ignore error.
384384
(cd $(LLVM_SRC_DIR) && \
385385
git show HEAD --stat | cat) || true
386-
ifneq ($(USE_RV),)
386+
ifeq ($(USE_RV),1)
387387
git clone -b $(LLVM_RV_GIT_VER) $(LLVM_RV_GIT_URL) $(LLVM_MONOSRC_DIR)/rv
388388
(cd $(LLVM_MONOSRC_DIR)/rv && \
389389
git submodule update --init) || true

0 commit comments

Comments
 (0)