diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-10-08 15:26:34 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-10-08 15:26:34 +0100 |
commit | 5689ceac13ce0c2db37c7aff66341906077a293f (patch) | |
tree | c3582bf7aedd03dcbfd7d791fbbb7e0eaaa2c254 /check-exports | |
parent | a3d46d170d792024827f403ed663bb61140e985c (diff) |
check-exports: no need to blacklist gstparse symbols any more
Diffstat (limited to 'check-exports')
-rwxr-xr-x | check-exports | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/check-exports b/check-exports index c6d3eca..dd7bafb 100755 --- a/check-exports +++ b/check-exports @@ -41,9 +41,7 @@ fi # BSS symbol, unlike on linux where it's a local absolute symbol. nm $NMARGS $lib_path | awk \ '{ - if ($3 !~ /^_gst_parse_yy/ && \ - $3 !~ /^_gst_[a-z]*_init/ && \ - $3 !~ /^_gst_parse_launch/ && \ + if ($3 !~ /^_gst_[a-z]*_init/ && \ $3 !~ /^__gst_element_details_/ && \ $3 !~ /^__gst_element_factory_add_/ && \ $3 !~ /^gst_interfaces_marshal/ && \ |