From ea162ea469815909aee9dd13e1f6cd8810803aa2 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 18 Aug 2009 15:51:05 +0000 Subject: [PATCH] 2009-08-17 17:50 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/dir.mk ! Fixed DIR_RULE assignment (:= back to =) --- harbour/ChangeLog | 4 ++++ harbour/config/dir.mk | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ab4f3dd24b..0c6a5059bb 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-08-17 17:50 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/dir.mk + ! Fixed DIR_RULE assignment (:= back to =) + 2009-08-17 17:38 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/global.mk * Upped minimum GNU Make version requirement to 3.78 (from 3.70). diff --git a/harbour/config/dir.mk b/harbour/config/dir.mk index 152aa4ac48..991c7c7973 100644 --- a/harbour/config/dir.mk +++ b/harbour/config/dir.mk @@ -33,7 +33,7 @@ ifeq ($(DIR_RULE),) DIRS_PURE := $(filter-out {%},$(subst {, {,$(DIRS))) DIRS_DEP := $(filter-out $(DIRS_PURE),$(DIRS)) DIRS_MK := $(foreach d, $(DIRS_PURE), $(if $(wildcard $(d)/Makefile),$(d),)) - DIR_RULE := $(foreach dir, $(DIRS_MK), $(dir_mk)) + DIR_RULE = $(foreach dir, $(DIRS_MK), $(dir_mk)) MULTI_DEPS := yes else