Fix to prevent dirs showing up multiple times when matching multiple wildcards

This commit is contained in:
Ralph Lange
2001-02-21 16:55:49 +00:00
parent 0b834904f4
commit 167e17f5bc
3 changed files with 13 additions and 13 deletions
+4 -4
View File
@@ -1,8 +1,8 @@
TOP = ..
include $(TOP)/configure/CONFIG
DIRS += $(wildcard *src*)
DIRS += $(wildcard *Src*)
DIRS += $(wildcard *db*)
DIRS += $(wildcard *Db*)
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *src*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Src*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *db*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Db*))
include $(TOP)/configure/RULES_DIRS