summaryrefslogtreecommitdiffstats
path: root/src/opkbuild.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-09-21 12:13:30 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-09-21 12:17:39 (EDT)
commitf0951b4dd3f733a13c09e7bcadf22cb67b6bf52f (patch)
treee79258f3b6d3bbba1eced8edb7cc9df037e43c19 /src/opkbuild.sh
parent9985fa748af5e496a9a974099b3dfedf487f739d (diff)
Rename mutex options message ID
Diffstat (limited to 'src/opkbuild.sh')
-rw-r--r--src/opkbuild.sh10
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'
;;