-
Notifications
You must be signed in to change notification settings - Fork 13.4k
configure: only req CMake if we're building LLVM #38128
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
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
@@ -848,7 +848,10 @@ then | |||
fi | |||
|
|||
# For building LLVM | |||
probe_need CFG_CMAKE cmake | |||
if [ -z $CFG_LLVM_ROOT ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be quoted? if [ -z "$CFG_LLVM_ROOT"]
?
Looks good to me, but I agree that we probably need quotes (or at least I think we do...) |
CMake is only necessary if LLVM is going to be built and not in any other case. Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
c7711fc
to
e39c8d6
Compare
Fixed. I agree it should be quoted. I was actually copying the behavior in other places in the script.
I'll add another commit that quotes that. |
These should probably be quoted. Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
@bors: r+ |
📌 Commit f83eb40 has been approved by |
configure: only req CMake if we're building LLVM CMake is only necessary if LLVM is going to be built and not in any other case. Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
CMake is only necessary if LLVM is going to be built and not in any
other case.
Signed-off-by: Doug Goldstein cardoe@cardoe.com