From 83e3729f683c8906da6ebdcc237d7bb96134fac7 Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Tue, 18 Aug 2009 19:34:59 +0000 Subject: [PATCH] 2009-08-18 21:34 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/config/global.mk * use $(error ...) instead of echo to inform about wrong GNU make version - it works for any targets i.e. clean --- harbour/ChangeLog | 5 +++++ harbour/config/global.mk | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 718096c8dc..c82dd8c52d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,11 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-08-18 21:34 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/config/global.mk + * use $(error ...) instead of echo to inform about wrong GNU make + version - it works for any targets i.e. clean + 2009-08-18 21:20 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + harbour/config/dj-echo.exe + added DJGPP echo.exe diff --git a/harbour/config/global.mk b/harbour/config/global.mk index 052bd34d89..ac019d35bf 100644 --- a/harbour/config/global.mk +++ b/harbour/config/global.mk @@ -39,7 +39,7 @@ ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) ifeq ($(ok),) -all: ; @$(ECHO) "! Error: GNU Make version $(MAKE_VERSION) found, $(need) or upper needed for Harbour" +$(error ! Error: GNU Make version $(MAKE_VERSION) found, $(need) or upper needed for Harbour) else