diff options
author | Dave Airlie <[email protected]> | 2012-12-04 09:25:13 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2012-12-04 18:02:07 +1000 |
commit | ec83535c83c748b067ecf4548e5396fef8719725 (patch) | |
tree | 5c33fb89c8bf30d918b5bbf3a1cd842225b09fdc /src | |
parent | a853301fb7428138618cab67542e401afb808fbf (diff) |
automake/gallium: attempt to fix -lrt
fix non-automake bits in pipe-load to.
Should fix:
http://bugs.freedesktop.org/57852
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/targets/pipe-loader/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/pipe-loader/Makefile b/src/gallium/targets/pipe-loader/Makefile index f15cd250308..b8688edcf53 100644 --- a/src/gallium/targets/pipe-loader/Makefile +++ b/src/gallium/targets/pipe-loader/Makefile @@ -24,7 +24,7 @@ PIPE_LIBS = \ $(TOP)/src/gallium/drivers/rbug/librbug.a \ $(GALLIUM_AUXILIARIES) -PIPE_SYS = $(LIBDRM_LIBS) -lm -lpthread $(DLOPEN_LIBS) +PIPE_SYS = $(LIBDRM_LIBS) -lm -lpthread $(CLOCK_LIB) $(DLOPEN_LIBS) PIPE_CFLAGS = $(LIBDRM_CFLAGS) |