diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/opkbuild.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/opkbuild.sh b/src/opkbuild.sh index 842acfb..10ab090 100644 --- a/src/opkbuild.sh +++ b/src/opkbuild.sh @@ -113,33 +113,33 @@ get_options() case "${opt}" in b) if [ -n "${opt_build}" ]; then - ob_error "$(ob_get_msg 'bbasf_mutex')" + ob_error "$(ob_get_msg 'bsf_mutex')" fi opt_build='binary' ;; B) case "${opt_build}" in ''|'binary');; - *) ob_error "$(ob_get_msg 'bbasf_mutex')" + *) 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 'bbasf_mutex')" + *) ob_error "$(ob_get_msg 'bsf_mutex')" esac opt_build='binary' opt_plat_dep=true ;; S) if [ -n "${opt_build}" ]; then - ob_error "$(ob_get_msg 'bbasf_mutex')" + ob_error "$(ob_get_msg 'bsf_mutex')" fi opt_build='source' ;; F) if [ -n "${opt_build}" ]; then - ob_error "$(ob_get_msg 'bbasf_mutex')" + ob_error "$(ob_get_msg 'bsf_mutex')" fi opt_build='full' ;; |