diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-05-24 04:37:20 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-05-24 04:37:20 +0000 |
commit | 3cf0739274914c880b5c2f6b23ff32efd0fd7963 (patch) | |
tree | a41851625ea102c9f8f761b6a5ad99690535719e /extra/config | |
parent | 58c5f8ba4cdf62342d05a546d15404cbbb3c4e07 (diff) |
use POSIX -eq rather than bash == #1360
Diffstat (limited to 'extra/config')
-rwxr-xr-x | extra/config/lxdialog/check-lxdialog.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/config/lxdialog/check-lxdialog.sh b/extra/config/lxdialog/check-lxdialog.sh index 120d624e6..df81c4455 100755 --- a/extra/config/lxdialog/check-lxdialog.sh +++ b/extra/config/lxdialog/check-lxdialog.sh @@ -57,7 +57,7 @@ usage() { printf "Usage: $0 [-check compiler options|-header|-library]\n" } -if [ $# == 0 ]; then +if [ $# -eq 0 ]; then usage exit 1 fi |