2009-05-22 16:28 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/config/dir.cf
    * do not enable parallel execution rules for GNU makes 3.7* and 3.80*
      which are known to have problems with them
This commit is contained in:
Przemyslaw Czerpak
2009-05-22 14:19:51 +00:00
parent 0f3dafcebd
commit 2d14461b98
2 changed files with 12 additions and 2 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to these authors: Viktor Szakats.
*/
2009-05-22 16:28 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/config/dir.cf
* do not enable parallel execution rules for GNU makes 3.7* and 3.80*
which are known to have problems with them
2009-05-22 15:32 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
+ Added autodetection of xmingw and mingw32ce tools on Linux.

View File

@@ -6,8 +6,13 @@ ifneq ($(HB_ARCHITECTURE),)
ifneq ($(HB_COMPILER),)
include $(TOP)$(ROOT)config/global.cf
# this make version does not work correctly parallel execution rules below
ifeq ($(MAKE_VERSION),3.79.1)
# these make versions does not work correctly with
# parallel execution rules below
OLD_MAKE:=$(MAKE_VERSION:3.7%=YES)
OLD_MAKE:=$(OLD_MAKE:3.80%=OLD)
ifeq ($(OLD_MAKE),YES)
include $(TOP)$(ROOT)config/$(HB_ARCHITECTURE)/dir.cf
endif