diff options
author | Carl Worth <cworth@cworth.org> | 2010-04-06 12:40:38 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-04-06 14:42:09 -0700 |
commit | c857b970e5cd53ae78543961735680c9b8e14341 (patch) | |
tree | 1465a49ffd8b416be98a34174cdc3384658f4376 | |
parent | a3c9dfe4fae48f6107ef78516f7ab36396ca9f3e (diff) |
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.
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 "" |