aboutsummaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-04-13 15:08:37 -0700
committerBen Pfaff <blp@nicira.com>2010-04-14 10:25:27 -0700
commit0b6d72fc776179703ba2cc8d8b3ea878a29cad61 (patch)
tree63df49c2111e191b9af443bf652a455f94d01a4e /acinclude.m4
parentcd05c6ad2fdcedce229f962ca29c167287b9b21b (diff)
configure: Convert --with-l26=<dir> argument to absolute path.
If the argument to --with-l26 is given as a relative pathname, then if configuration succeeds, the build will fail, because the current directory during the kernel build is different from that at configuration time. Avoid the problem by converting the argument to an absolute path if necessary.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 4 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index abbc57e6..81e99488 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -24,6 +24,10 @@ AC_DEFUN([OVS_CHECK_LINUX26], [
[KBUILD26="$withval"], [KBUILD26=])dnl
if test -n "$KBUILD26"; then
KBUILD26=`eval echo "$KBUILD26"`
+ case $KBUILD26 in
+ /*) ;;
+ *) KBUILD26=`pwd`/$KBUILD26 ;;
+ esac
# The build directory is what the user provided.
# Make sure that it exists.