Mesa (master): configure.ac: Fix error message in radeon_llvm_check().

Matt Turner mattst88 at kemper.freedesktop.org
Tue Mar 7 15:27:56 UTC 2017


Module: Mesa
Branch: master
Commit: f73903f09bd53fe4659dc8771141a6466956123f
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f73903f09bd53fe4659dc8771141a6466956123f

Author: Matt Turner <mattst88 at gmail.com>
Date:   Mon Mar  6 09:17:19 2017 -0800

configure.ac: Fix error message in radeon_llvm_check().

It printed the version of LLVM ($1):

   configure: error: 3.6.0 requires libelf when using llvm

instead of the driver name ($2):

   configure: error: r600 requires libelf when using llvm

Reviewed-by: Emil Velikov <emil.velikov at collabora.com>
Reviewed-by: Marek Olšák <marek.olsak at amd.com>
Reviewed-by: Tobias Droste <tdroste at gmx.de>

---

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 7d712b4..49cb283 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1013,7 +1013,7 @@ radeon_llvm_check() {
     llvm_add_component "ipo" $2
 
     if test "x$have_libelf" != xyes; then
-       AC_MSG_ERROR([$1 requires libelf when using llvm])
+       AC_MSG_ERROR([$2 requires libelf when using llvm])
     fi
 }
 




More information about the mesa-commit mailing list