From 3b579c6e6332ec8c4966a4a68e3018335a08b1b5 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Wed, 7 Jul 2004 09:38:14 +0000 Subject: [PATCH] Arguments to options aren't necessarily separated with whitespace. Noticed by: harti --- tools/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/install.sh b/tools/install.sh index 899d7e21d48a..594d4de7a135 100644 --- a/tools/install.sh +++ b/tools/install.sh @@ -33,6 +33,7 @@ while [ $# -gt 0 ]; do case $1 in -[bCcMpSs]) shift;; -[Bfgmo]) shift; shift;; + -[Bfgmo]*) shift;; *) break; esac done