summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2016-02-16 22:32:16 +0000
committerTim-Philipp Müller <tim@centricular.com>2016-02-16 22:32:16 +0000
commita25397448942079002622be231e9ec49b985745a (patch)
treea8c8324857bd183ace149ecb7d0e2ae2bc9da3b2
parentb64f03f6090245624608beb5d2fff335e23a01c0 (diff)
check-exports: don't fail for diffs in libgstgl.def
The exported symbols will depend on the backends built and be different from platform to platform. Should probably be the win32 symbols anyway, which is not the case at the moment. So for now just show any diff but not fail.
-rw-r--r--win32.mak5
1 files changed, 4 insertions, 1 deletions
diff --git a/win32.mak b/win32.mak
index 30e347e..87cd346 100644
--- a/win32.mak
+++ b/win32.mak
@@ -44,7 +44,10 @@ check-exports:
if test "x$$libso" != "x"; then \
echo Checking symbols in $$libso; \
if ! ($(top_srcdir)/common/check-exports $$libdef $$libso) ; then \
- fail=1; \
+ echo "$$libdef"; \
+ if test "$$libbase" != "libgstgl"; then \
+ fail=1; \
+ fi; \
fi; \
fi; \
done ; \