Remove unused --with-kernel-release option

This was a leftover from the already-removed
network-destruction-on-container shutdown code.

Signed-off-by: Guido Trotter <ultrotter@quaqua.net>
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
This commit is contained in:
Guido Trotter 2009-07-26 17:44:11 +02:00 committed by Daniel Lezcano
parent c159cb9638
commit f8e88c4e65

View File

@ -49,12 +49,6 @@ LXC_MAJOR_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f1)
LXC_MINOR_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f2) LXC_MINOR_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f2)
LXC_MICRO_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f3) LXC_MICRO_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f3)
AC_ARG_WITH([kernel-release],
[AC_HELP_STRING([--with-kernel-release=RELEASE],
[specify the "uname -r"-value to build for])],
[KERNEL_RELEASE="${withval}"],
[KERNEL_RELEASE=`uname -r`])
AC_ARG_ENABLE(test, [ --enable-test compile test program [default=no]],, enable_test=no) AC_ARG_ENABLE(test, [ --enable-test compile test program [default=no]],, enable_test=no)
AM_CONDITIONAL(ENABLE_TEST, test x$enable_test = xyes) AM_CONDITIONAL(ENABLE_TEST, test x$enable_test = xyes)