summaryrefslogtreecommitdiffstats
path: root/src/oh-strip.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2014-02-25 13:16:28 (EST)
committer P. J. McDermott <pjm@nac.net>2014-02-25 13:16:28 (EST)
commite4e9b382499329a499459df0022108766426c2ac (patch)
tree8df466c2609868cdfc0ba0bcb5b673921e4dd521 /src/oh-strip.sh
parent06b4ef4c6fa9f4bdbeec62a2513f0db9a93176c1 (diff)
parent2dfe7dd1fa038db1bd36247938d07e6a254fa663 (diff)
Merge branch 'feature/drop-libopkbuild-dep'.
Conflicts: configure
Diffstat (limited to 'src/oh-strip.sh')
-rw-r--r--src/oh-strip.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/oh-strip.sh b/src/oh-strip.sh
index 1c21545..7b47d6c 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 "$(oh_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 "$(oh_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 "$(oh_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 "$(oh_get_msg 'strip_a')" "${file}"
${STRIP} --strip-debug "${dir}/${file}"
}