From 226a542fa9108b392d95667647a3cfb50ece2cb2 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 10 Aug 2009 09:54:29 +0000 Subject: [PATCH] 2009-08-10 11:51 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/globsh.cf % Deleted hack with unknown purpose when forming $(MK) variable: '$(subst \~,~,$(MAKE))' -> $(MAKE) Please shout if you know the purpose, all I could find out is that it was added in this change: Fri Jun 11 17:11:09 1999 Gonzalo A. Diethelm but there is no specific description of this change, besides making MAKE work on non-bash systems. --- harbour/ChangeLog | 12 +++++++++++- harbour/config/globsh.cf | 6 +++--- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 9acf0d1bd8..0f160cd26c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,16 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-08-10 11:51 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/globsh.cf + % Deleted hack with unknown purpose when forming $(MK) variable: + '$(subst \~,~,$(MAKE))' -> $(MAKE) + Please shout if you know the purpose, all I could find out + is that it was added in this change: + Fri Jun 11 17:11:09 1999 Gonzalo A. Diethelm + but there is no specific description of this change, besides + making MAKE work on non-bash systems. + 2009-08-10 11:48 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/config/linux/sunpro.cf ! fixed list of linked system libraries to be Linux compatible @@ -35,7 +45,7 @@ * contrib/hbtip/client.prg % TIPCLIENT() now uses INIT instead of manual initialization of - class vars. + object vars. * TIPCLIENT():NEW(): Protocol check made more robust. * source/vm/dynlibhb.c diff --git a/harbour/config/globsh.cf b/harbour/config/globsh.cf index d48ac42577..7a8913199e 100644 --- a/harbour/config/globsh.cf +++ b/harbour/config/globsh.cf @@ -54,7 +54,7 @@ endif ifeq ($(HB_SHELL),nt) -MK := "$(subst \,/,$(subst \~,~,$(MAKE)))" +MK := "$(subst \,/,$(MAKE))" RM := del /q /f RDP := rmdir /q /s CP := copy @@ -79,7 +79,7 @@ endif ifeq ($(HB_SHELL),os2) -MK := $(subst \,/,$(subst \~,~,$(MAKE))) +MK := $(subst \,/,$(MAKE)) RM := del /n RDP := $(TOOL_DIR)os2-rm -rf CP := copy @@ -100,7 +100,7 @@ endif ifeq ($(HB_SHELL),dos) -MK := $(subst \,/,$(subst \~,~,$(MAKE))) +MK := $(subst \,/,$(MAKE)) RM := del RDP := $(TOOL_DIR)dj-rm -f -r CP := $(TOOL_DIR)dj-cp -f