diff options
author | P. J. McDermott <pjm@nac.net> | 2012-01-21 14:27:50 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-01-21 14:27:50 (EST) |
commit | deb2032de4e20b1119ac81681b3661528c31d47a (patch) | |
tree | cd1b491fcda0419353ca057ffa26bc6fb66eb10e /src | |
parent | 3322feeae7d9bd6fc5b79f0d8a5ebb96e339009e (diff) |
Fix an output string.
Diffstat (limited to 'src')
-rw-r--r-- | src/oh-strip | 3 |
1 files changed, 2 insertions, 1 deletions
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 |