From 02c263d102c4bb6de2f50a8486d19211ea1a65a4 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sun, 11 Nov 2012 19:01:28 +0100 Subject: [PATCH] Fix configure script help text for --enable options. --- configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index 1c5d858..ee4da11 100644 --- a/configure.in +++ b/configure.in @@ -73,7 +73,7 @@ case $host_os in esac AC_ARG_ENABLE(uml, - AS_HELP_STRING([--disable-uml], [enable support for User Mode Linux]), + AS_HELP_STRING([--enable-uml], [enable support for User Mode Linux]), [ AS_IF([test "x$enable_uml" = "xyes"], [ AC_DEFINE(ENABLE_UML, 1, [Support for UML]) uml=true @@ -84,7 +84,7 @@ AC_ARG_ENABLE(uml, ) AC_ARG_ENABLE(vde, - AS_HELP_STRING([--disable-vde], [enable support for Virtual Distributed Ethernet]), + AS_HELP_STRING([--enable-vde], [enable support for Virtual Distributed Ethernet]), [ AS_IF([test "x$enable_vde" = "xyes"], [ AC_CHECK_HEADERS(libvdeplug_dyn.h, [], [AC_MSG_ERROR([VDE plug header files not found.]); break]) AC_DEFINE(ENABLE_VDE, 1, [Support for VDE]) @@ -96,7 +96,7 @@ AC_ARG_ENABLE(vde, ) AC_ARG_ENABLE(tunemu, - AS_HELP_STRING([--disable-tunemu], [enable support for the tunemu driver]), + AS_HELP_STRING([--enable-tunemu], [enable support for the tunemu driver]), [ AS_IF([test "x$enable_tunemu" = "xyes"], [ AC_DEFINE(ENABLE_TUNEMU, 1, [Support for tunemu]) tunemu=true -- 2.25.1