diff options
author | Jonathan Gray <[email protected]> | 2015-11-23 14:22:24 +1100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-12-01 16:53:40 +0000 |
commit | 99cd60083518ad4465e3e29996168e8fa8a89fbb (patch) | |
tree | 637663b9fbb9c978a72431dcde94260e851c88f3 /src/gallium/targets/opencl | |
parent | 241f15ac80ddc452862b9d40d4d4bef648835ba0 (diff) |
automake: fix some occurrences of hardcoded -ldl and -lpthread
Correct some occurrences of -ldl and -lpthread to use
$(DLOPEN_LIBS) and $(PTHREAD_LIBS) respectively.
Signed-off-by: Jonathan Gray <[email protected]>
Cc: "11.0 11.1" <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/targets/opencl')
-rw-r--r-- | src/gallium/targets/opencl/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/opencl/Makefile.am b/src/gallium/targets/opencl/Makefile.am index 3cb29766724..08f95e8074c 100644 --- a/src/gallium/targets/opencl/Makefile.am +++ b/src/gallium/targets/opencl/Makefile.am @@ -20,7 +20,7 @@ lib@OPENCL_LIBNAME@_la_LIBADD = \ $(top_builddir)/src/gallium/auxiliary/libgallium.la \ $(top_builddir)/src/util/libmesautil.la \ $(ELF_LIB) \ - -ldl \ + $(DLOPEN_LIBS) \ -lclangCodeGen \ -lclangFrontendTool \ -lclangFrontend \ |