From ba3a05115e30e0bf0c5204b9f04144a2b524895c Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Tue, 25 Feb 2014 12:15:54 -0500 Subject: src/oh-strip.sh: Use new locale functions. --- (limited to 'src') 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}" } -- cgit v0.9.1