diff options
author | P. J. McDermott <pjm@nac.net> | 2014-02-24 21:16:18 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2014-02-24 21:16:18 (EST) |
commit | 102666b9535793050a099b6bf988750e1fa3f9de (patch) | |
tree | d06621d732f793bb668ad03b80e6c1125bdd23c1 | |
parent | f98867293f5dac687d22ffea1b21442ca840e16b (diff) |
src/oh-strip.sh: Use new output functions.
-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 1c21545..827c697 100644 --- a/src/oh-strip.sh +++ b/src/oh-strip.sh @@ -40,7 +40,7 @@ main() keep_debug='true' ;; ?) - ob_error "$(ob_get_msg 'bad_opt')" + oh_error "$(ob_get_msg 'bad_opt')" exit 1 ;; esac @@ -78,7 +78,7 @@ strip_so() file="${1}" debug='' - ob_info "$(ob_get_msg 'strip_so')" "${file}" + oh_info "$(ob_get_msg 'strip_so')" "${file}" if ${keep_debug}; then debug="$(keep_debug "${file}")" @@ -97,7 +97,7 @@ strip_exe() file="${1}" debug='' - ob_info "$(ob_get_msg 'strip_exe')" "${file}" + oh_info "$(ob_get_msg 'strip_exe')" "${file}" if ${keep_debug}; then debug="$(keep_debug "${file}")" @@ -115,7 +115,7 @@ strip_a() { file="${1}" - ob_info "$(ob_get_msg 'strip_a')" "${file}" + oh_info "$(ob_get_msg 'strip_a')" "${file}" ${STRIP} --strip-debug "${dir}/${file}" } |