summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@redhat.com>2014-12-15 15:49:39 -0500
committerDan Williams <dcbw@redhat.com>2014-12-16 09:26:25 -0600
commitff362700f1ef1999b38e7524fa00371a7f146689 (patch)
tree655b496d498f7333962e71434a2a37bf16b4e4e7
parent9e6e9f89d52934a2250c8a50b952c6a7e341c459 (diff)
downloadNetworkManager-ff362700f1ef1999b38e7524fa00371a7f146689.tar.gz
libnm: remove __libnm_local section from version script
I had argued for putting the local symbols in their own section, since it doesn't make sense to have local symbols introduced in 1.2 in the libnm_1_0_0 section... but apparently even if the section has no exported symbols, rpm's find-provides still picks it up if it's there, creating an ugly additional "provides" for libnm. So get rid of that. (cherry picked from commit 8d96273870a1b8aaed5eb266080ef997bcbb1ba3)
-rw-r--r--libnm/libnm.ver9
1 files changed, 3 insertions, 6 deletions
diff --git a/libnm/libnm.ver b/libnm/libnm.ver
index 718d1f086a..82bcdb9f07 100644
--- a/libnm/libnm.ver
+++ b/libnm/libnm.ver
@@ -1,8 +1,3 @@
-__libnm_local {
-local:
- *;
-};
-
libnm_1_0_0 {
global:
nm_802_11_ap_flags_get_type;
@@ -846,4 +841,6 @@ global:
nm_wimax_nsp_get_signal_quality;
nm_wimax_nsp_get_type;
nm_wimax_nsp_network_type_get_type;
-} __libnm_local;
+local:
+ *;
+};