From a8fde98844d33d2fae0366e4b3fdb086d2d497ce Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Thu, 26 Mar 2009 06:39:14 -0600 Subject: tests: fix 'make sc_tight_scope' on cygwin * src/Makefile.am (sc_tight_scope): Ignore leading underscores in symbols. --- src/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/Makefile.am b/src/Makefile.am index 2313ed346..08718b1e8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -448,6 +448,7 @@ sc_tight_scope: $(all_programs) ) | $(ASSORT) -u | sed 's/^/^/;s/$$/$$/' > $$t; \ nm -e *.$(OBJEXT) \ | sed -n 's/.* T //p' \ + | sed 's/^_//' \ | grep -Ev -f $$t && \ { echo 'the above functions should have static scope' 1>&2; \ exit 1; } || : ; \ @@ -456,6 +457,7 @@ sc_tight_scope: $(all_programs) $$hdr *.h ) | $(ASSORT) -u > $$t; \ nm -e *.$(OBJEXT) \ | sed -n 's/.* [BD] //p' \ + | sed 's/^_//' \ | grep -Ev -f $$t && \ { echo 'the above variables should have static scope' 1>&2; \ exit 1; } || : -- cgit v1.2.3-54-g00ecf