diff options
author | P. J. McDermott <pjm@nac.net> | 2014-02-25 12:13:24 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2014-02-25 12:13:24 (EST) |
commit | 0dc63a74decb0d7ab32d6903db5c2477a7dc3085 (patch) | |
tree | 60d67dc349f6baaab2df833c9352659dc9eaf397 /src | |
parent | 772e2280a99a0e77e7c40f6a6a205e424f69eee8 (diff) |
src/oh-auto*.sh: Use new locale functions.
Diffstat (limited to 'src')
-rw-r--r-- | src/oh-autobuild.sh | 2 | ||||
-rw-r--r-- | src/oh-autoclean.sh | 2 | ||||
-rw-r--r-- | src/oh-autoconfigure.sh | 2 | ||||
-rw-r--r-- | src/oh-autoinstall.sh | 2 | ||||
-rw-r--r-- | src/oh-autotest.sh | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/oh-autobuild.sh b/src/oh-autobuild.sh index 84aed92..cc365bc 100644 --- a/src/oh-autobuild.sh +++ b/src/oh-autobuild.sh @@ -42,7 +42,7 @@ main() oh_set_buildsystem_option 'build-target' "${OPTARG}" ;; ?) - oh_error "$(ob_get_msg 'bad_opt')" + oh_error "$(oh_get_msg 'bad_opt')" exit 1 ;; esac diff --git a/src/oh-autoclean.sh b/src/oh-autoclean.sh index 1545153..b57b6f1 100644 --- a/src/oh-autoclean.sh +++ b/src/oh-autoclean.sh @@ -39,7 +39,7 @@ main() oh_set_buildsystem_option 'build-dir' "${OPTARG}" ;; ?) - oh_error "$(ob_get_msg 'bad_opt')" + oh_error "$(oh_get_msg 'bad_opt')" exit 1 ;; esac diff --git a/src/oh-autoconfigure.sh b/src/oh-autoconfigure.sh index 95cdaa5..af18b87 100644 --- a/src/oh-autoconfigure.sh +++ b/src/oh-autoconfigure.sh @@ -42,7 +42,7 @@ main() oh_set_buildsystem_option 'target-arch' "${OPTARG}" ;; ?) - oh_error "$(ob_get_msg 'bad_opt')" + oh_error "$(oh_get_msg 'bad_opt')" exit 1 ;; esac diff --git a/src/oh-autoinstall.sh b/src/oh-autoinstall.sh index 0bf9633..6dbb532 100644 --- a/src/oh-autoinstall.sh +++ b/src/oh-autoinstall.sh @@ -45,7 +45,7 @@ main() oh_set_buildsystem_option 'build-target' "${OPTARG}" ;; ?) - oh_error "$(ob_get_msg 'bad_opt')" + oh_error "$(oh_get_msg 'bad_opt')" exit 1 ;; esac diff --git a/src/oh-autotest.sh b/src/oh-autotest.sh index f44fc17..f11414d 100644 --- a/src/oh-autotest.sh +++ b/src/oh-autotest.sh @@ -36,7 +36,7 @@ main() oh_set_buildsystem_option 'build-dir' "${OPTARG}" ;; ?) - oh_error "$(ob_get_msg 'bad_opt')" + oh_error "$(oh_get_msg 'bad_opt')" exit 1 ;; esac |