configure: Try to extract kernel source directory from build Makefile.
authorBen Pfaff <blp@nicira.com>
Thu, 16 Feb 2012 18:34:55 +0000 (10:34 -0800)
committerBen Pfaff <blp@nicira.com>
Fri, 17 Feb 2012 00:43:54 +0000 (16:43 -0800)
commitf12bbb6bd9c8f8d985bf44ad09c1ba5dfd2ebcff
tree96112ffcd13c06c8deb0ead69491f69b9531910f
parent2c3209cab3f476244bd87327f55cb2c3f2315fd6
configure: Try to extract kernel source directory from build Makefile.

OVS needs to inspect the headers in the kernel source directory at build
time.  Debian keeps moving the source directory relative to the build
directory and doesn't provide an obvious way to find the source directory,
so in the past we've used some name-based heuristics to essentially guess
where it is.

This commit introduces a new heuristic that I hope will be more reliable:
extracting the source directory from the Makefile in the build directory.
In Debian's case, it looks like the Makefile generally contains a line of
the form "MAKEARGS := -C <srcdir> O=<outdir>".  This commit extracts the
source directory from that line.

To avoid regressions this commit retains the older heuristics as fallbacks.

CC: 659685@bugs.debian.org
Reported-by: Thomas Goirand <zigo@debian.org>
Signed-off-by: Ben Pfaff <blp@nicira.com>
acinclude.m4