summaryrefslogtreecommitdiff
path: root/src/bios_reader
diff options
context:
space:
mode:
authorMark Kettenis <mark.kettenis@xs4all.nl>2008-02-26 17:26:50 -0800
committerEric Anholt <eric@anholt.net>2008-02-26 17:26:50 -0800
commitfdc25cb0ca7d479051cee66a032f9ee1b68db98a (patch)
treeee62099b66e0d35477ba316b162aea97720196c0 /src/bios_reader
parente55d86f654aa9dd4951b441636c8ca4b37786daf (diff)
Bug #14649: Fix build if pciaccess headers are not with other xorg headers.
We failed to include the pciaccess header flags in our build. Even if the server was to include those flags for us, it would leave us broken for the tools-only case, and it's easier to just put the flags everywhere so we avoid future copy'n'paste mistakes.
Diffstat (limited to 'src/bios_reader')
-rw-r--r--src/bios_reader/Makefile.am3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bios_reader/Makefile.am b/src/bios_reader/Makefile.am
index 76ad15f7..c4da9573 100644
--- a/src/bios_reader/Makefile.am
+++ b/src/bios_reader/Makefile.am
@@ -1,4 +1,4 @@
-AM_CFLAGS = @WARN_CFLAGS@ @XORG_CFLAGS@ @XMODES_CFLAGS@
+AM_CFLAGS = @WARN_CFLAGS@ @XORG_CFLAGS@ @XMODES_CFLAGS@ @PCIACCESS_CFLAGS@
noinst_PROGRAMS = bios_reader $(BIOS_DUMPER)
@@ -7,7 +7,6 @@ BIOS_DUMPER = bios_dumper
bios_dumper_SOURCES = bios_dumper.c
-bios_dumper_CFLAGS = $(PCIACCESS_CFLAGS)
bios_dumper_LDADD = $(PCIACCESS_LIBS)
endif