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.
This commit is contained in:
Viktor Szakats
2009-08-21 13:31:08 +00:00
parent 0227b270af
commit 032b7c445d
2 changed files with 5 additions and 1 deletions

View File

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

View File

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