diff --git a/harbour/ChangeLog b/harbour/ChangeLog index b95d4297d2..92e73b0b33 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-04-10 04:11 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * external/Makefile + * contrib/Makefile + ! Fixed make error when all subdirs were excluded. + 2009-04-09 20:42 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * utils/hbmk2/hbmk2.prg - Disabled UPX support for all non-Linux *nix systems. diff --git a/harbour/contrib/Makefile b/harbour/contrib/Makefile index 2763b2390b..102eb12352 100644 --- a/harbour/contrib/Makefile +++ b/harbour/contrib/Makefile @@ -58,4 +58,8 @@ DIRS += $(HB_CONTRIB_ADDONS) # DIRS += examples -include $(ROOT)config/dir.cf +ifneq ($(DIRS),) +include $(TOP)$(ROOT)config/dir.cf +else +include $(TOP)$(ROOT)config/none.cf +endif diff --git a/harbour/external/Makefile b/harbour/external/Makefile index 4d2c381774..63def60404 100644 --- a/harbour/external/Makefile +++ b/harbour/external/Makefile @@ -22,4 +22,8 @@ endif DIRS += $(HB_EXTERNAL_ADDONS) -include $(ROOT)config/dir.cf +ifneq ($(DIRS),) +include $(TOP)$(ROOT)config/dir.cf +else +include $(TOP)$(ROOT)config/none.cf +endif