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)
This commit is contained in:
Viktor Szakats
2009-07-17 00:33:47 +00:00
parent 698c5954fa
commit 1645cb3f1c
3 changed files with 15 additions and 6 deletions

View File

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

View File

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

View File

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