From deb2032de4e20b1119ac81681b3661528c31d47a Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sat, 21 Jan 2012 14:27:50 -0500 Subject: Fix an output string. --- diff --git a/src/oh-strip b/src/oh-strip index a8769d4..91caa12 100644 --- a/src/oh-strip +++ b/src/oh-strip @@ -65,7 +65,7 @@ fi # Iterate over object files. while [ ${#} -gt 0 ]; do - printf 'oh-strip: Stripping objects in package "%s"...\n' "${1}" + printf 'oh-strip: Stripping symbols fom file "%s"...\n' "${1}" if ${make_dbg_pkg}; then # Copy debugging symbols into a debugging object file and add a GDB link @@ -76,4 +76,5 @@ while [ ${#} -gt 0 ]; do # Strip the object file of symbols. # TODO: If the file is not a library, strip it of all symbols. strip -g "dest/${1}" + shift done -- cgit v0.9.1