From 17b7777e747149bbfb26c8679783db864a92479a Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Wed, 21 Feb 2001 18:40:14 +0000 Subject: [PATCH] Added wildcard for ioc boot dirs. --- src/makeBaseApp/top/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/makeBaseApp/top/Makefile b/src/makeBaseApp/top/Makefile index 9577d4132..bb27ec020 100644 --- a/src/makeBaseApp/top/Makefile +++ b/src/makeBaseApp/top/Makefile @@ -4,6 +4,6 @@ include $(TOP)/configure/CONFIG DIRS := $(DIRS) $(filter-out $(DIRS), configure) DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *App)) DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *app)) -DIRS := $(DIRS) $(filter-out $(DIRS), iocBoot) -DIRS := $(DIRS) $(filter-out $(DIRS), iocboot) +DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard iocBoot)) +DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard iocboot)) include $(TOP)/configure/RULES_TOP