diff options
-rw-r--r-- | src/opkbuild.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/opkbuild.sh b/src/opkbuild.sh index 10ab090..ad22429 100644 --- a/src/opkbuild.sh +++ b/src/opkbuild.sh @@ -118,15 +118,15 @@ get_options() opt_build='binary' ;; B) - case "${opt_build}" in ''|'binary');; - *) ob_error "$(ob_get_msg 'bsf_mutex')" + case "${opt_build}" in ''|'binary');; *) + ob_error "$(ob_get_msg 'bsf_mutex')";; esac opt_build='binary' opt_arch_dep=true ;; P) - case "${opt_build}" in ''|'binary');; - *) ob_error "$(ob_get_msg 'bsf_mutex')" + case "${opt_build}" in ''|'binary');; *) + ob_error "$(ob_get_msg 'bsf_mutex')";; esac opt_build='binary' opt_plat_dep=true |