diff mbox

sna: wc-mmap: Fix warning in configure

Message ID 1415354058-27322-1-git-send-email-sedat.dilek@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Sedat Dilek Nov. 7, 2014, 9:54 a.m. UTC
This fixes the following warning due to a typo:

configure: WARNING: unrecognized options: --enable-wc-map
Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com>
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Chris Wilson Nov. 7, 2014, 10:06 a.m. UTC | #1
On Fri, Nov 07, 2014 at 10:54:18AM +0100, Sedat Dilek wrote:
> This fixes the following warning due to a typo:
> 
> configure: WARNING: unrecognized options: --enable-wc-map
> Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com>

Thank you, pushed.
-Chris
diff mbox

Patch

diff --git a/configure.ac b/configure.ac
index e5877c8..328b4e9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -723,7 +723,7 @@  if test "x$RENDERNODE" = "xyes"; then
 fi
 
 AC_ARG_ENABLE(wc-mmap,
-	      AS_HELP_STRING([--enable-wc-map],
+	      AS_HELP_STRING([--enable-wc-mmap],
 			     [Enable use of WriteCombining mmaps [default=no]]),
 	      [WC_MMAP="$enableval"],
 	      [WC_MMAP="no"])