From 731e07f1754527bfe537cba009f22f11da01d635 Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Mon, 28 May 2012 21:16:39 +0200 Subject: [PATCH] Only warn for unknown options in configure script This follows discussion started at http://lists.nongnu.org/archive/html/tinycc-devel/2012-05/msg00015.html --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 188c3609..f152cf9e 100755 --- a/configure +++ b/configure @@ -168,7 +168,7 @@ for opt do ;; --help|-h) show_help="yes" ;; - *) echo "configure: unrecognized option $opt"; exit 1 + *) echo "configure: WARNING: unrecognized option $opt" ;; esac done -- 2.11.4.GIT