Skip to content

Commit

Permalink
Fix the stage and version-check targets for make -C deps (Julia…
Browse files Browse the repository at this point in the history
…Lang#47881)

The variable `DEP_LIBS_STAGED` was removed in PR JuliaLang#40998 but it's still
being referenced in other places. Notably, its removal renders `make -C
deps stage` and `make -C deps version-check` as no-ops. For reference,
the definition of the variable prior to JuliaLang#40998 was
```make
DEP_LIBS_STAGED := $(filter-out libsuitesparse-wrapper,$(DEP_LIBS))
```
Since that PR removed `libsuitesparse-wrapper` entirely, we can simply
initialize `DEP_LIBS_STAGED` to `DEP_LIBS`.
  • Loading branch information
ararslan committed Dec 13, 2022
1 parent 965bc7d commit 9fd3136
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deps/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ DEP_LIBS += libwhich
endif
endif

DEP_LIBS_STAGED := $(DEP_LIBS)

# list all targets
DEP_LIBS_STAGED_ALL := llvm llvm-tools clang llvmunwind unwind libuv pcre \
openlibm dsfmt blastrampoline openblas lapack gmp mpfr patchelf utf8proc \
Expand Down

0 comments on commit 9fd3136

Please sign in to comment.