diff options
| author | Sebastien Bacher <seb128@ubuntu.com> | 2019-08-09 11:09:27 +0200 |
|---|---|---|
| committer | Sebastien Bacher <seb128@ubuntu.com> | 2019-08-09 11:18:39 +0200 |
| commit | 820498b2158e0b05421ce0922f203a0699927fa8 (patch) | |
| tree | 3bf6d1089b762535ec5e59738d47ae2d2f54750f /tools/create-exports-NetworkManager.sh | |
| parent | 1bd9f376796563dfb5016bada66c78b203f41d33 (diff) | |
| parent | 488dda3930545969f5644b57cfca81e21df031c3 (diff) | |
Merge remote-tracking branch 'salsa/master'
Diffstat (limited to 'tools/create-exports-NetworkManager.sh')
| -rwxr-xr-x | tools/create-exports-NetworkManager.sh | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/tools/create-exports-NetworkManager.sh b/tools/create-exports-NetworkManager.sh index 375141aa..b089aba2 100755 --- a/tools/create-exports-NetworkManager.sh +++ b/tools/create-exports-NetworkManager.sh @@ -18,10 +18,15 @@ die() { # options to yield the most symbols. _build() { git clean -fdx - ./autogen.sh --enable-ld-gc --enable-ifcfg-rh --enable-ifupdown \ - --enable-config-plugin-ibft --enable-teamdctl --enable-wifi \ - --with-modem-manager-1 --with-ofono --with-more-asserts \ - --with-more-logging + ./autogen.sh --enable-ld-gc \ + --enable-ifcfg-rh \ + --enable-ifupdown \ + --enable-teamdctl \ + --enable-wifi \ + --with-modem-manager-1 \ + --with-ofono \ + --with-more-asserts \ + --with-more-logging make -j20 } @@ -56,7 +61,7 @@ get_symbols_missing() { ./src/devices/*/${libs} \ ./src/ppp/${libs} -name '*.so' 2>/dev/null); do call_nm "$f" | - sed -n 's/^\([U]\) \(\(nm_\|nmp_\|_nm\|NM\|_NM\|c_siphash_\).*\)$/\2/p' + sed -n 's/^\([U]\) \(\(nm_\|nmp_\|_nm\|NM\|_NM\|nmtst_\|c_siphash_\|c_list_\).*\)$/\2/p' done) | _sort | grep -Fx -f <(get_symbols_explict) -v | |