diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-08-24 10:18:27 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2011-08-25 11:21:24 +0200 |
commit | 7020d2351bb3468d6b0d32ad5908b9b475ae274c (patch) | |
tree | 3840ad184a6e68fb4e9e2283b77c8a3f886cc77b | |
parent | 7952d6fbfc4f6430e043d65ddf2923ca359cfb73 (diff) | |
download | devtools32-7020d2351bb3468d6b0d32ad5908b9b475ae274c.tar.xz |
checkpkg: Use read builtin to get new ".so" files
The read shell builtin is the proper way to read single lines. Also,
simplify grep(1) and awk(1) invocations and use a single awk(1)
expression, that supports extracting file names with spaces, instead.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
-rwxr-xr-x | checkpkg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ for _pkgname in "${pkgname[@]}"; do mkdir -p pkg cd pkg bsdtar xf ../"$pkgfile" > /dev/null - for i in $(diff "../filelist-$_pkgname-old" "../filelist-$_pkgname" | grep \> | grep '\.so' | awk '{print $2}'); do + diff "../filelist-$_pkgname-old" "../filelist-$_pkgname" | awk '/>.*\.so/{$1 = ""; print $0}' | while read i; do echo "${i}: " "$(objdump -p "$i" | grep SONAME)" done cd .. |