From 1768e836d428082334a07f710b85073d2ab82969 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Tue, 6 Jan 2015 13:17:50 +0100 Subject: tests: fix a typo-induced bug * t/subobj-vpath-pr13928.sh: Here; we were using $FGREP instead of $EGREP, oops. Signed-off-by: Stefano Lattarini --- t/subobj-vpath-pr13928.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/subobj-vpath-pr13928.sh b/t/subobj-vpath-pr13928.sh index a10d65776..56b26f1ab 100644 --- a/t/subobj-vpath-pr13928.sh +++ b/t/subobj-vpath-pr13928.sh @@ -41,8 +41,8 @@ $ACLOCAL && $AUTOCONF && $AUTOMAKE -a || fatal_ "autotools failed" $EGREP 'test\.|DEPDIR|dirstamp|srcdir' Makefile.in || : # For debugging. $EGREP '\$.srcdir./test\.[o$]' Makefile.in && exit 1 -$FGREP '$(srcdir)/$(am__dirstamp)' Makefile.in && exit 1 -$FGREP '$(srcdir)/$(DEPDIR)' && exit 1 +$EGREP '$(srcdir)/$(am__dirstamp)' Makefile.in && exit 1 +$EGREP '$(srcdir)/$(DEPDIR)' && exit 1 cat > test.c << 'END' int main (void) -- cgit v1.2.1