diff options
author | José Fonseca <[email protected]> | 2013-01-22 18:35:13 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2013-01-22 19:10:47 +0000 |
commit | de0057caa66207c5eb94bd251ab357309f78b60c (patch) | |
tree | 1071b85465eb024d0c836c2fbaa76a9013db4fcb /src/gallium/drivers/nv30 | |
parent | a56dfd99e2cf2b7a0916cb59d2866303a627b02f (diff) |
nouveau/build: Fix build failures when drm is not in /usr/include.
Fixes failures to include libdrm/nouveau.h when drm is not installed in
/usr/include.
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nv30')
-rw-r--r-- | src/gallium/drivers/nv30/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv30/Makefile.am b/src/gallium/drivers/nv30/Makefile.am index 668a8b2fa7c..e7d19839bfc 100644 --- a/src/gallium/drivers/nv30/Makefile.am +++ b/src/gallium/drivers/nv30/Makefile.am @@ -28,6 +28,7 @@ noinst_LTLIBRARIES = libnv30.la AM_CPPFLAGS = \ -I$(top_srcdir)/src/gallium/drivers \ -I$(top_srcdir)/include \ - $(GALLIUM_CFLAGS) + $(GALLIUM_CFLAGS) \ + $(NOUVEAU_CFLAGS) libnv30_la_SOURCES = $(C_SOURCES) |