summaryrefslogtreecommitdiff
path: root/source3/autogen.sh
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-01-01 13:28:38 +0100
committerVolker Lendecke <vl@samba.org>2009-01-01 13:33:22 +0100
commit74ea79cb8fa42b1bc13ac2bd9450beb13ad1cd5e (patch)
tree945675338809144955ad81ea2fada36c1aaa2f14 /source3/autogen.sh
parent4d82f69f884c0c9105d7c1cc53a1235e26222fbc (diff)
downloadsamba-74ea79cb8fa42b1bc13ac2bd9450beb13ad1cd5e.tar.gz
The Tru64 shell doesn't like (*) in a case statement
Diffstat (limited to 'source3/autogen.sh')
-rwxr-xr-xsource3/autogen.sh4
1 files changed, 2 insertions, 2 deletions
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