diff options
author | Emil Velikov <[email protected]> | 2014-03-31 13:05:14 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-03-31 13:05:36 +0100 |
commit | 354a5cad74c38d2211e7f0ad485cc302fe51b3f0 (patch) | |
tree | 80234756907dd4d824df7c7e7bfdff1ed1039bf0 /src/gallium/targets/pipe-loader | |
parent | 0177ff0039613f5fbfffa90c9971cdef17550206 (diff) |
pipe-loader: reorder PIPE_LIBS
Reorder -lm, -lrt, -lpthreads and -ldl to be consistent with the
rest of mesa.
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/targets/pipe-loader')
-rw-r--r-- | src/gallium/targets/pipe-loader/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/targets/pipe-loader/Makefile.am b/src/gallium/targets/pipe-loader/Makefile.am index ef1110476c6..6e78a75b6d2 100644 --- a/src/gallium/targets/pipe-loader/Makefile.am +++ b/src/gallium/targets/pipe-loader/Makefile.am @@ -40,10 +40,10 @@ PIPE_LIBS = \ $(top_builddir)/src/gallium/drivers/rbug/librbug.la \ $(top_builddir)/src/gallium/drivers/trace/libtrace.la \ $(top_builddir)/src/gallium/drivers/galahad/libgalahad.la \ - $(DLOPEN_LIBS) \ + -lm \ $(CLOCK_LIB) \ $(PTHREAD_LIBS) \ - -lm + $(DLOPEN_LIBS) AM_LDFLAGS = \ -module \ |