From 246e47128d33af400bfc7a5b1b7fc5d8d19d6578 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Fri, 29 Aug 2008 15:24:28 +0000 Subject: [PATCH] Remove lower-case paths, they break apps on Win32. --- src/makeBaseApp/top/Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/makeBaseApp/top/Makefile b/src/makeBaseApp/top/Makefile index c20091615..f0d9ad762 100644 --- a/src/makeBaseApp/top/Makefile +++ b/src/makeBaseApp/top/Makefile @@ -3,17 +3,14 @@ TOP = . 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), $(wildcard iocBoot)) -DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard iocboot)) define DIR_template $(1)_DEPEND_DIRS = configure endef $(foreach dir, $(filter-out configure,$(DIRS)),$(eval $(call DIR_template,$(dir)))) -iocBoot_DEPEND_DIRS += $(filter %App %app,$(DIRS)) -iocboot_DEPEND_DIRS += $(filter %App %app,$(DIRS)) +iocBoot_DEPEND_DIRS += $(filter %App,$(DIRS)) include $(TOP)/configure/RULES_TOP