mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-21 16:30:29 +01:00
Revert "configure.ac: Create correct LLVM_VERSION_INT with minor >= 10"
As stated in [1] by the LLVM devs, the new versioning scheme will not
deploy any minor version (i.e. it will always be zero). As such the
patch should not be needed.
This reverts commit 0e9a5be7e7.
[1] http://blog.llvm.org/2016/12/llvms-new-versioning-scheme.html
Reviewed-by: Tobias Droste <tdroste@gmx.de>
This commit is contained in:
parent
5e9f4a5f3f
commit
fc30992a54
1 changed files with 1 additions and 5 deletions
|
|
@ -952,11 +952,7 @@ llvm_set_environment_variables() {
|
|||
LLVM_VERSION_PATCH=0
|
||||
fi
|
||||
|
||||
if test "$LLVM_VERSION_MINOR" -lt 10; then
|
||||
LLVM_VERSION_INT="${LLVM_VERSION_MAJOR}0${LLVM_VERSION_MINOR}"
|
||||
else
|
||||
LLVM_VERSION_INT="${LLVM_VERSION_MAJOR}${LLVM_VERSION_MINOR}"
|
||||
fi
|
||||
LLVM_VERSION_INT="${LLVM_VERSION_MAJOR}0${LLVM_VERSION_MINOR}"
|
||||
|
||||
FOUND_LLVM=yes
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue