2009-08-17 17:50 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* config/dir.mk
    ! Fixed DIR_RULE assignment (:= back to =)
This commit is contained in:
Viktor Szakats
2009-08-18 15:51:05 +00:00
parent 6f4a6b04a8
commit ea162ea469
2 changed files with 5 additions and 1 deletions

View File

@@ -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).

View File

@@ -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