Mesa (master): swr: use the correct variable for no undefined symbols

Emil Velikov evelikov at kemper.freedesktop.org
Mon Jul 24 10:02:16 UTC 2017


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

Author: Emil Velikov <emil.velikov at collabora.com>
Date:   Fri Jul 21 13:44:22 2017 +0100

swr: use the correct variable for no undefined symbols

The variable name was missing a leading LD_, which resulted in a missing
check for unresolved symbols in the backend binaries.

With the link addressed with earlier patches, we can correct the typo.

Thanks to Laurent for the help spotting this.

v2: Split from a larger patch.

Cc: mesa-stable at lists.freedesktop.org
Cc: Bruce Cherniak <bruce.cherniak at intel.com>
Cc: Tim Rowley <timothy.o.rowley at intel.com>
Cc: Laurent Carlier <lordheavym at gmail.com>
Fixes: 9475251145174882b532 "swr: standardize linkage and check for
                             unresolved symbols"
Reviewed-by: Eric Engestrom <eric.engestrom at imgtec.com>
Reported-by: Laurent Carlier <lordheavym at gmail.com>
Signed-off-by: Emil Velikov <emil.velikov at collabora.com>

---

 src/gallium/drivers/swr/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/swr/Makefile.am b/src/gallium/drivers/swr/Makefile.am
index bc7abad06a..05fc3b3595 100644
--- a/src/gallium/drivers/swr/Makefile.am
+++ b/src/gallium/drivers/swr/Makefile.am
@@ -238,7 +238,7 @@ COMMON_LDFLAGS = \
 	-module \
 	-no-undefined \
 	$(GC_SECTIONS) \
-	$(NO_UNDEFINED)
+	$(LD_NO_UNDEFINED)
 
 lib_LTLIBRARIES =
 




More information about the mesa-commit mailing list