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.
This commit is contained in:
Viktor Szakats
2009-08-10 09:54:29 +00:00
parent 0d7c2153a9
commit 226a542fa9
2 changed files with 14 additions and 4 deletions

View File

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

View File

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