summaryrefslogtreecommitdiff
path: root/libnm
diff options
context:
space:
mode:
authorDan Winship <danw@redhat.com>2014-12-15 15:49:39 -0500
committerDan Winship <danw@redhat.com>2014-12-15 15:49:39 -0500
commit8d96273870a1b8aaed5eb266080ef997bcbb1ba3 (patch)
tree240b6c537be76b0bcf5e9e6e39b562959755d969 /libnm
parentfa94aaf3a52887c0d225ccf32a689cdaa40feeec (diff)
downloadNetworkManager-8d96273870a1b8aaed5eb266080ef997bcbb1ba3.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.
Diffstat (limited to 'libnm')
-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:
+ *;
+};