From 1645cb3f1ce642b9976d084ba1cd63a5f666e437 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 17 Jul 2009 00:33:47 +0000 Subject: [PATCH] 2009-07-17 02:19 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/instsh.cf * shell/nt rule $(MD) -> $(MDP). (just for clarity) * config/globsh.cf * dos shell fixed again. Now I had to delete '.exe' extension from tools to stay withing cmdline limit (for single file copy commands) --- harbour/ChangeLog | 9 +++++++++ harbour/config/globsh.cf | 10 +++++----- harbour/config/instsh.cf | 2 +- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 8222200b64..f5a22394f3 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,15 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-07-17 02:19 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/instsh.cf + * shell/nt rule $(MD) -> $(MDP). (just for clarity) + + * config/globsh.cf + * dos shell fixed again. Now I had to delete '.exe' extension + from tools to stay withing cmdline limit (for single file + copy commands) + 2009-07-17 02:09 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * make_gnu.sh * config/global.cf diff --git a/harbour/config/globsh.cf b/harbour/config/globsh.cf index e8e1484507..ee07cf0e19 100644 --- a/harbour/config/globsh.cf +++ b/harbour/config/globsh.cf @@ -92,11 +92,11 @@ ifeq ($(HB_SHELL),dos) TOOL_DIR := $(subst /,\,$(TOP)$(ROOT)config/) MK = $(subst \,/,$(subst \~,~,$(MAKE))) -RM = $(TOOL_DIR)dj-rm.exe -f -RD = $(TOOL_DIR)dj-rm.exe -f -r -CP = $(TOOL_DIR)dj-cp.exe -f -MD = $(TOOL_DIR)dj-mkdir.exe -MDP = $(TOOL_DIR)dj-mkdir.exe -p +RM = $(TOOL_DIR)dj-rm -f +RD = $(TOOL_DIR)dj-rm -f -r +CP = $(TOOL_DIR)dj-cp -f +MD = $(TOOL_DIR)dj-mkdir +MDP = $(TOOL_DIR)dj-mkdir -p dirbase:: -@$(CMDPREF)if not exist $(OBJ_DIR_OS)\nul $(MDP) $(OBJ_DIR_OS) diff --git a/harbour/config/instsh.cf b/harbour/config/instsh.cf index 29719eede0..850815db39 100644 --- a/harbour/config/instsh.cf +++ b/harbour/config/instsh.cf @@ -50,7 +50,7 @@ endif ifeq ($(HB_SHELL),nt) INSTALL_RULE =\ - -$(CMDPREF)if not exist "$(INSTALL_DIR_OS)" $(MD) "$(INSTALL_DIR_OS)" &\ + -$(CMDPREF)if not exist "$(INSTALL_DIR_OS)" $(MDP) "$(INSTALL_DIR_OS)" &\ for %%f in ($(INSTALL_FILES_OS)) do copy "%%f" "$(INSTALL_DIR_OS)" endif