diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 4fbef2575d..b103a865f2 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-08-21 15:32 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/instsh.mk + % Fixed to use $(CP) instead of 'copy' in nt install rule. + 2009-08-21 15:16 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/globsh.mk % Replaced 'if not exist' nt and os2 shell cmds with $(wildcard). diff --git a/harbour/config/instsh.mk b/harbour/config/instsh.mk index 7aaad49433..1642065230 100644 --- a/harbour/config/instsh.mk +++ b/harbour/config/instsh.mk @@ -42,7 +42,7 @@ ifeq ($(HB_SHELL),nt) define inst_file_all $(if $(wildcard $(subst $(subst x,x, ),\ ,$(INSTALL_DIR))),,-@$(MDP) "$(INSTALL_DIR_OS)") - -@for %%f in ($(INSTALL_FILES_OS)) do copy "%%f" "$(INSTALL_DIR_OS)" + -@for %%f in ($(INSTALL_FILES_OS)) do $(CP) "%%f" "$(INSTALL_DIR_OS)" endef INSTALL_RULE := $(inst_file_all)