diff options
author | Daniel Stone <daniel@fooishbar.org> | 2010-06-01 19:23:42 +0100 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2010-06-01 19:23:42 +0100 |
commit | ae57dcf6e063860200b7949d5e2365e80ac4aea7 (patch) | |
tree | 0148264ef12ab3142e31007c96fca0f37877a6de /libkms | |
parent | 607e228c263d5d171bd0615d5d93202dda371e5f (diff) |
libkms: Fix include paths
Otherwise xf86drm.h isn't found, or the wrong one.
Diffstat (limited to 'libkms')
-rw-r--r-- | libkms/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libkms/Makefile.am b/libkms/Makefile.am index 0375ae49..2c758786 100644 --- a/libkms/Makefile.am +++ b/libkms/Makefile.am @@ -1,6 +1,7 @@ AM_CFLAGS = \ $(WARN_CFLAGS) \ - -I$(top_srcdir)/include/drm + -I$(top_srcdir)/include/drm \ + -I$(top_srcdir) libkms_la_LTLIBRARIES = libkms.la libkms_ladir = $(libdir) |