From c857b970e5cd53ae78543961735680c9b8e14341 Mon Sep 17 00:00:00 2001
From: Carl Worth <cworth@cworth.org>
Date: Tue, 6 Apr 2010 12:40:38 -0700
Subject: [PATCH] configure: Avoid printing '.' at the end of error message.

Since we're emitting the user's input back, let's leave it pristine
and not confuse the issue by adding a final period.
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index 65a533f1..a2998411 100755
--- a/configure
+++ b/configure
@@ -103,7 +103,7 @@ for option; do
 	build_vendor=${build_option%%-*}
 	build_os=${build_option#*-}
     else
-	echo "Unrecognized option: ${option}."
+	echo "Unrecognized option: ${option}"
 	echo "See:"
 	echo "	$0 --help"
 	echo ""
-- 
2.26.2