diff options
author | Emil Velikov <[email protected]> | 2017-07-21 13:44:22 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-07-24 10:23:45 +0100 |
commit | 4d53b16f555b2d33216518100fb2cd578428512d (patch) | |
tree | 35a0722ecbb95bef02187f1b37bc26ca06d39861 /src | |
parent | 9fd23435c29a81df41429ce1003047835b6649ab (diff) |
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: [email protected]
Cc: Bruce Cherniak <[email protected]>
Cc: Tim Rowley <[email protected]>
Cc: Laurent Carlier <[email protected]>
Fixes: 9475251145174882b532 "swr: standardize linkage and check for
unresolved symbols"
Reviewed-by: Eric Engestrom <[email protected]>
Reported-by: Laurent Carlier <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/swr/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
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 = |