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.
This commit is contained in:
Dan Winship 2014-12-15 15:49:39 -05:00
parent fa94aaf3a5
commit 8d96273870

View file

@ -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:
*;
};