1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Update configure change

Always define THIN_CHECK_CMD define - since for now we compile thin code
in more places.
This commit is contained in:
Zdenek Kabelac 2012-03-14 19:25:04 +00:00
parent ea91741212
commit 909887be5e
2 changed files with 5 additions and 5 deletions

4
configure vendored
View File

@ -7064,14 +7064,14 @@ fi
test -z "$THIN_CHECK_CMD" && as_fn_error $? "thin_check not found in path $PATH" "$LINENO" 5 test -z "$THIN_CHECK_CMD" && as_fn_error $? "thin_check not found in path $PATH" "$LINENO" 5
fi fi
;;
esac
cat >>confdefs.h <<_ACEOF cat >>confdefs.h <<_ACEOF
#define THIN_CHECK_CMD "$THIN_CHECK_CMD" #define THIN_CHECK_CMD "$THIN_CHECK_CMD"
_ACEOF _ACEOF
;;
esac
################################################################################ ################################################################################

View File

@ -422,11 +422,11 @@ case "$THIN" in
AC_PATH_PROG(THIN_CHECK_CMD, thin_check) AC_PATH_PROG(THIN_CHECK_CMD, thin_check)
test -z "$THIN_CHECK_CMD" && AC_MSG_ERROR(thin_check not found in path $PATH) test -z "$THIN_CHECK_CMD" && AC_MSG_ERROR(thin_check not found in path $PATH)
fi fi
;;
esac
AC_DEFINE_UNQUOTED([THIN_CHECK_CMD], ["$THIN_CHECK_CMD"], AC_DEFINE_UNQUOTED([THIN_CHECK_CMD], ["$THIN_CHECK_CMD"],
[The path to 'thin_check', if available.]) [The path to 'thin_check', if available.])
;;
esac
################################################################################ ################################################################################