diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-02-08 19:07:22 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-02-08 19:07:22 -0500 |
commit | ec2d3b6055d5f4eda11f924e3f52e80a093307e8 (patch) | |
tree | 326d1198f3b3e151b68baac159fa350b082cc2ca | |
parent | 61bb9c15e6b265f8a7e65a6222695bb777c758c0 (diff) |
config: remove unrequired '-I$(top_srcdir)/src'
The current dir is already included by default in the makefile
top_builddir = ..
DEFAULT_INCLUDES = -I. -I$(top_builddir)
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ab716d0..34d1d91 100644 --- a/configure.ac +++ b/configure.ac @@ -71,7 +71,7 @@ AM_CONDITIONAL(XF86RUSH, test "x$have_xf86rush" = xyes) AC_SUBST([XF86RUSH_LIBS]) AC_SUBST([XF86RUSH_CFLAGS]) -CFLAGS="$CFLAGS $XORG_CFLAGS $XF86RUSH_CFLAGS"' -I$(top_srcdir)/src' +CFLAGS="$CFLAGS $XORG_CFLAGS $XF86RUSH_CFLAGS" AC_SUBST([CFLAGS]) save_CFLAGS="$CFLAGS" |