From 5f121757c60f158ebdb69db074869ea91e37c863 Mon Sep 17 00:00:00 2001 From: William King Date: Wed, 6 Oct 1999 22:53:21 +0000 Subject: [PATCH] missing parenthesis on make variable in test target ... --- bin/tests/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/Makefile.in b/bin/tests/Makefile.in index c748ac1cb7..acdf90804f 100644 --- a/bin/tests/Makefile.in +++ b/bin/tests/Makefile.in @@ -208,7 +208,7 @@ clean distclean:: rm -f t_journal test: - for $dir in $(SUBDIRS) ;\ + for $(dir) in $(SUBDIRS) ;\ do \ (cd $$(dir); $(MAKE) test) ;\ done