Skip to content
Snippets Groups Projects
Commit 22fbe294 authored by Christian Engwer's avatar Christian Engwer
Browse files

fixed bashism

[[Imported from SVN: r4719]]
parent d1cee249
No related branches found
No related tags found
No related merge requests found
......@@ -20,14 +20,14 @@ for OPT in "$@"; do
case "$OPT" in
--ac=*|--acversion=*)
if test "x$arg" == "x"; then
if test "x$arg" = "x"; then
usage;
exit 1;
fi
ACVERSION=$arg
;;
--am=*|--amversion=*)
if test "x$arg" == "x"; then
if test "x$arg" = "x"; then
usage;
exit 1;
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment