13 lines
222 B
Bash
Executable File
13 lines
222 B
Bash
Executable File
#!/bin/sh -efu
|
|
while IFS=$'\t' read -r f t; do
|
|
case "$f" in
|
|
${RPM_BUILD_ROOT-}/usr/lib/debug/*.debug) ;;
|
|
*) continue ;;
|
|
esac
|
|
case "$t" in
|
|
*ELF*' shared object'*) ;;
|
|
*) continue ;;
|
|
esac
|
|
printf '%s\n' "$f"
|
|
done
|