diff options
author | Pete Beardmore <pete.beardmore@msn.com> | 2012-11-19 16:42:24 +0000 |
---|---|---|
committer | Pete Beardmore <pete.beardmore@msn.com> | 2012-11-19 16:42:24 +0000 |
commit | 469825b70fff8373f2f67a65b8ab348cc7eb1269 (patch) | |
tree | 25fe41514f703005b0d1a42388b79450c0f10aed /configure.in | |
parent | 49cd92bd56e25739f9e4e6023ac884f55e710bc0 (diff) |
autotools: fix build hitting wrong config header (ticket #13364)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 8d3e857ea7..a3a9a035e5 100644 --- a/configure.in +++ b/configure.in @@ -843,7 +843,7 @@ if test "x$have_builtin_sync_val_compare_and_swap" = "xyes"; then fi # Add top source directory for all builds so we can use config.h -INCLUDES="$INCLUDES -I\$(abs_top_srcdir)" +INCLUDES="-I\$(abs_top_srcdir) $INCLUDES" # Check inotify availability AC_CHECK_HEADER([sys/inotify.h], AC_DEFINE([HAVE_INOTIFY],[1],[Define if we have inotify]),) |