[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH 2/5] AC_ARG_WITH -> AC_ARG_ENABLE
- From: David Cantrell <dcantrell redhat com>
- To: anaconda-devel-list redhat com
- Cc:
- Subject: [PATCH 2/5] AC_ARG_WITH -> AC_ARG_ENABLE
- Date: Thu, 2 Jul 2009 20:39:29 -1000
These configure arguments are of the format --enable-X, not --with-X.
---
configure.ac | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 47d4c7e..15d321b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -146,7 +146,7 @@ else
fi
# SELinux support can be enabled or disabled
-AC_ARG_WITH(selinux,
+AC_ARG_ENABLE(selinux,
AC_HELP_STRING([--enable-selinux],
[enable SELinux support (default is yes)]),
[selinux=$enableval],
@@ -163,7 +163,7 @@ if test x$selinux = xyes ; then
fi
# NFS support can, in theory, be enabled or disabled
-AC_ARG_WITH(nfs,
+AC_ARG_ENABLE(nfs,
AC_HELP_STRING([--enable-nfs],
[enable NFS support (default is yes)]),
[nfs=$enableval],
--
1.6.3.3
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]