From: Volker Lendecke Date: Thu, 1 Jan 2009 12:28:38 +0000 (+0100) Subject: The Tru64 shell doesn't like (*) in a case statement X-Git-Tag: samba-4.0.0alpha6~283^2~42^2~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=74ea79cb8fa42b1bc13ac2bd9450beb13ad1cd5e;p=thirdparty%2Fsamba.git The Tru64 shell doesn't like (*) in a case statement --- diff --git a/source3/autogen.sh b/source3/autogen.sh index 61316a8f70c..1a33eb22cc4 100755 --- a/source3/autogen.sh +++ b/source3/autogen.sh @@ -4,11 +4,11 @@ while true; do case $1 in - (--version-file) + --version-file) VERSION_FILE=$2 shift 2 ;; - (*) + *) break ;; esac