summaryrefslogtreecommitdiff |
diff options
author | Miroslav Benes <mbenes@suse.cz> | 2019-02-19 12:52:52 +0100 |
---|---|---|
committer | Miroslav Benes <mbenes@suse.cz> | 2019-02-19 12:52:52 +0100 |
commit | 62a0a00eb21b75ec43f3d3c46f1015445318a47d (patch) | |
tree | 572e06c91df4e8d316035ef4c73db048ef5a5059 | |
parent | 751908095c7556831da3722634d685577f486c46 (diff) |
rpm/klp-symbols: Remove the second column in Symbols.listpackaging
Symbols.list file contains also a symbol type next to its name.
klp-convert cannot handle it well and it is superfluous anyway.
Signed-off-by: Miroslav Benes <mbenes@suse.cz>
-rwxr-xr-x | rpm/klp-symbols | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpm/klp-symbols b/rpm/klp-symbols index 012fca43c3..c108030a9e 100755 --- a/rpm/klp-symbols +++ b/rpm/klp-symbols @@ -36,7 +36,7 @@ fi get_symbols() { - nm -f posix "$1" | grep -v '\( [UN] \)\|\(\.L\|__crc_\)' | cut -d\ -f1,2 + nm -f posix "$1" | grep -v '\( [UN] \)\|\(\.L\|__crc_\)' | cut -d\ -f1 } echo "klp-convert-symbol-data.$KLP_DATA_VERSION" > "$KLP_SYMBOLS" |