diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 2eaa11a411..9ddc2d1d51 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,14 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-08-23 18:36 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/globsh.mk + ! Deleted double quotes from around $(MK) command on nt + shells. + This had the side effect that GNU Make couldn't run the + executable for recursion if it wasn't in the PATH. + (so win-make.exe didn't work. Now it does.) + 2009-08-23 18:30 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/global.mk ! Minor regression when adding HB_CPU detection for dos plat. diff --git a/harbour/config/globsh.mk b/harbour/config/globsh.mk index 991531e20c..ed2c754677 100644 --- a/harbour/config/globsh.mk +++ b/harbour/config/globsh.mk @@ -82,7 +82,7 @@ ifeq ($(HB_SHELL),nt) # CreateProcess() is used, where the maximum length is 32767. # [vszakats] -MK := "$(subst \,/,$(MAKE))" +MK := $(subst \,/,$(MAKE)) RM := del /q /f RDP := rmdir /q /s CP := copy