From: Dmitry Eremin-Solenikov Date: Tue, 19 Jun 2018 08:26:09 +0000 (+0300) Subject: symbol-check: fix typo to make it work for out-of-tree builds X-Git-Tag: gnutls_3_6_3~86^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ce3ff295a20db08a2dec887cebaff8bddff389c2;p=thirdparty%2Fgnutls.git symbol-check: fix typo to make it work for out-of-tree builds Signed-off-by: Dmitry Eremin-Solenikov --- diff --git a/Makefile.am b/Makefile.am index 50e87d43b8..5b8e80c947 100644 --- a/Makefile.am +++ b/Makefile.am @@ -119,7 +119,7 @@ abi-check: .prev-tag-abi.stamp symbol-check: @objdump -T $(builddir)/lib/.libs/libgnutls.so | grep -v ' \*UND\*' | awk '{print $$7 "@" $$6;}' | grep -v GNUTLS_FIPS140 | grep -v GNUTLS_PRIVATE | grep -v '^@' | sort -u >symbols.last.tmp @diff -u $(srcdir)/symbols.last symbols.last.tmp >/dev/null 2>&1; if test $$? != 0;then \ - diff -u $(srcdir)symbols.last symbols.last.tmp | grep -v '\-\-\-' >symbols.diff.tmp 2>&1; \ + diff -u $(srcdir)/symbols.last symbols.last.tmp | grep -v '\-\-\-' >symbols.diff.tmp 2>&1; \ if grep -e '^-' symbols.diff.tmp;then \ echo "*******************************************"; \ echo "Symbols were removed from the library."; \