From: Guido Trotter Date: Sun, 26 Jul 2009 15:44:11 +0000 (+0200) Subject: Remove unused --with-kernel-release option X-Git-Tag: lxc_0_6_4~102 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f8e88c4e6589d3d15d96b9211512d371cfe50405;p=thirdparty%2Flxc.git 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 Signed-off-by: Daniel Lezcano --- diff --git a/configure.ac b/configure.ac index 25b77ebb5..0860d5fe1 100644 --- a/configure.ac +++ b/configure.ac @@ -49,12 +49,6 @@ LXC_MAJOR_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f1) LXC_MINOR_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f2) 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) AM_CONDITIONAL(ENABLE_TEST, test x$enable_test = xyes)