Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the stage and version-check targets for make -C deps #47881

Merged
merged 1 commit into from
Dec 13, 2022

Conversation

ararslan
Copy link
Member

The variable DEP_LIBS_STAGED was removed in #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 #40998 was

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.

The variable `DEP_LIBS_STAGED` was removed in PR 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 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`.
@ararslan ararslan added building Build system, or building Julia or its dependencies bugfix This change fixes an existing bug labels Dec 12, 2022
@ararslan ararslan requested a review from vtjnash December 12, 2022 22:57
@vtjnash vtjnash merged commit 9fd3136 into master Dec 13, 2022
@vtjnash vtjnash deleted the aa/make-staged branch December 13, 2022 20:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bugfix This change fixes an existing bug building Build system, or building Julia or its dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants