From 37180fb7eeb1441eae8ce8d2c07a5d867b3b04fa Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 11 Apr 2000 11:48:13 +0000 Subject: [PATCH] [project @ 2000-04-11 11:48:13 by simonmar] don't try to recurse into non-directories. --- ghc/tests/programs/Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/ghc/tests/programs/Makefile b/ghc/tests/programs/Makefile index 4906af4..039afcb 100644 --- a/ghc/tests/programs/Makefile +++ b/ghc/tests/programs/Makefile @@ -1,7 +1,13 @@ +#----------------------------------------------------------------------------- +# $Id: Makefile,v 1.6 2000/04/11 11:48:13 simonmar Exp $ +# +# (c) The GHC Team, 1999-2000 +# + TOP = . include $(TOP)/mk/boilerplate.mk -NOT_THESE = CVS mk Makefile make.log +NOT_THESE = CVS mk NOT_THESE += hill_stk_oflow # Correctly fails to terminate @@ -22,7 +28,7 @@ NOT_THESE += andy_cherry barton-mangler-bug callback cvh_unboxing dmgob_native1 NOT_THESE += jeff-bug lennart_array # compiles but doesn't run -SUBDIRS = $(filter-out $(NOT_THESE), $(wildcard *)) +SUBDIRS = $(filter-out $(patsubst %, %/, $(NOT_THESE)), $(wildcard */)) include $(TOP)/mk/target.mk -- 1.7.10.4