From 4d53b16f555b2d33216518100fb2cd578428512d Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Fri, 21 Jul 2017 13:44:22 +0100 Subject: [PATCH] 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@lists.freedesktop.org Cc: Bruce Cherniak Cc: Tim Rowley Cc: Laurent Carlier Fixes: 9475251145174882b532 "swr: standardize linkage and check for unresolved symbols" Reviewed-by: Eric Engestrom Reported-by: Laurent Carlier Signed-off-by: Emil Velikov --- 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 bc7abad06af..05fc3b3595b 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 = -- 2.11.0