diff options
author | Ben Widawsky <benjamin.widawsky@linux.intel.com> | 2014-03-27 09:56:59 -0700 |
---|---|---|
committer | Ben Widawsky <benjamin.widawsky@linux.intel.com> | 2014-03-27 09:56:59 -0700 |
commit | 47c551bd700b50fded87ccf81384fb2e384e5f6b (patch) | |
tree | f3aec0e97176d52d859559bd9e9c771b99c14c14 /tools | |
parent | 9048aa1974aee567617220f9685ad115be0cbae7 (diff) |
quick_dump: Put the cairo cflags with the other cflags.
I had been hoping we can avoid linking against cairo, but alas it was
not meant to be.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/quick_dump/Makefile.am | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/quick_dump/Makefile.am b/tools/quick_dump/Makefile.am index 4787af3d..7e0be567 100644 --- a/tools/quick_dump/Makefile.am +++ b/tools/quick_dump/Makefile.am @@ -1,4 +1,4 @@ -AM_CPPFLAGS = -I$(top_srcdir)/lib $(PYTHON_CPPFLAGS) $(DRM_CFLAGS) +AM_CPPFLAGS = -I$(top_srcdir)/lib $(PYTHON_CPPFLAGS) $(DRM_CFLAGS) $(CAIRO_CFLAGS) BUILT_SOURCES = chipset_wrap_python.c @@ -32,5 +32,3 @@ EXTRA_DIST = \ quick_dump.py \ reg_access.py \ chipset.i chipset.py - -AM_CFLAGS = $(CAIRO_CFLAGS) |