diff options
author | P. J. McDermott <pjm@nac.net> | 2014-02-25 12:15:54 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2014-02-25 12:15:54 (EST) |
commit | ba3a05115e30e0bf0c5204b9f04144a2b524895c (patch) | |
tree | 765cd79f419acf9355fa987109c84d96f86cbcea /src | |
parent | d296bed0039995c20abf510c2c9b36b85eacfa6f (diff) |
src/oh-strip.sh: Use new locale functions.
Diffstat (limited to 'src')
-rw-r--r-- | src/oh-strip.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/oh-strip.sh b/src/oh-strip.sh index 827c697..7b47d6c 100644 --- a/src/oh-strip.sh +++ b/src/oh-strip.sh @@ -40,7 +40,7 @@ main() keep_debug='true' ;; ?) - oh_error "$(ob_get_msg 'bad_opt')" + oh_error "$(oh_get_msg 'bad_opt')" exit 1 ;; esac @@ -78,7 +78,7 @@ strip_so() file="${1}" debug='' - oh_info "$(ob_get_msg 'strip_so')" "${file}" + oh_info "$(oh_get_msg 'strip_so')" "${file}" if ${keep_debug}; then debug="$(keep_debug "${file}")" @@ -97,7 +97,7 @@ strip_exe() file="${1}" debug='' - oh_info "$(ob_get_msg 'strip_exe')" "${file}" + oh_info "$(oh_get_msg 'strip_exe')" "${file}" if ${keep_debug}; then debug="$(keep_debug "${file}")" @@ -115,7 +115,7 @@ strip_a() { file="${1}" - oh_info "$(ob_get_msg 'strip_a')" "${file}" + oh_info "$(oh_get_msg 'strip_a')" "${file}" ${STRIP} --strip-debug "${dir}/${file}" } |