diff options
author | Julien Cristau <jcristau@debian.org> | 2010-04-17 01:39:23 +0200 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2010-04-17 01:39:23 +0200 |
commit | b22d830a4e1c609a709e71c306a3b3a8ff8a6078 (patch) | |
tree | de1b3d4d1fa8ee17a3635f6ef778f07791b38d70 /tools | |
parent | 1cba87aab183eb3846757a0ee0828e3eb119a6e6 (diff) |
Don't clobber CFLAGS
CFLAGS is a user variable, don't set it from configure.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index 8c40369..581ad65 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -20,7 +20,7 @@ bin_PROGRAMS = @DRIVER_NAME@_detect -INCLUDES = -I$(top_srcdir)/shared +AM_CPPFLAGS = -I$(top_srcdir)/shared $(XORG_CFLAGS) @DRIVER_NAME@_detect_SOURCES = vmmouse_detect.c @DRIVER_NAME@_detect_LDADD = $(top_builddir)/shared/lib@DRIVER_NAME@.la |