summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2017-06-28 18:28:02 +0200
committerLubomir Rintel <lkundrak@v3.sk>2017-06-28 18:35:23 +0200
commitaa0707005c2f862892951840bb041f511f05ee7b (patch)
tree7dca5ae77ef9e99335dabe5372f463ae619a930c
parent8efeb3688cd25a53c324f595f774f80276f90d65 (diff)
downloadNetworkManager-aa0707005c2f862892951840bb041f511f05ee7b.tar.gz
tools: fix the PowerPC build
On ppc archtecture the "nm_bt_vtable_network_server" symbol in the small objects section instead of .bss, represencted by a "S" letter. Also include "G" which is an equivalent thing for initialized data. We don't seem to have such objects at the moment, but when we do it could result in a nasty surprise.
-rwxr-xr-xtools/create-exports-NetworkManager.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/create-exports-NetworkManager.sh b/tools/create-exports-NetworkManager.sh
index 439aa909f9..b44e44bfa5 100755
--- a/tools/create-exports-NetworkManager.sh
+++ b/tools/create-exports-NetworkManager.sh
@@ -36,7 +36,7 @@ call_nm() {
get_symbols_nm () {
call_nm ./src/.libs/libNetworkManager.a |
- sed -n 's/^[tTDRB] //p' |
+ sed -n 's/^[tTDGRBS] //p' |
_sort
}