2009-08-15 23:255 UTC+0200 Maurilio Longo (maurilio.longo@libero.it)

* config/instsh.cf
     ! fixed OS/2 section, work around for OS/2 shell max line lenght.
This commit is contained in:
Maurilio Longo
2009-08-15 21:22:12 +00:00
parent 57c051a829
commit 3357d24e1a
2 changed files with 16 additions and 7 deletions

View File

@@ -17,6 +17,12 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-08-15 23:255 UTC+0200 Maurilio Longo (maurilio.longo@libero.it)
* config/instsh.cf
! fixed OS/2 section, work around for OS/2 shell max line lenght.
2009-08-15 18:32 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* config/global.cf
+ Added new plans for further setting cleanup.

View File

@@ -49,18 +49,20 @@ ifeq ($(HB_SHELL),nt)
endif
ifeq ($(HB_SHELL),os2)
define inst_file_all
-@if not exist $(INSTALL_DIR_OS) $(MDP) $(INSTALL_DIR)
$(foreach file,$(INSTALL_FILES_OS),$(inst_file))
endef
ifeq ($(HB_SHELL),os2)
# We have to use script to overcome the max command size limit
# NOTE: The empty line directly before 'endef' HAVE TO exist!
# It causes that every command will be separated by LF
# It causes that every commands will be separated by LF
# 05/Aug/2009 - <maurilio.longo@libero.it>
# I don't like doing the "if not exist..." test for every file copied
# but I could not find any other way to make this work around the shell
# command line length limit.
define inst_file
-@$(CP) $(file) $(INSTALL_DIR_OS)
@$(COMSPEC) /C if not exist $(INSTALL_DIR_OS) $(MDP) $(INSTALL_DIR)
$(COMSPEC) /C $(CP) $(file) $(INSTALL_DIR_OS)
endef
@@ -68,6 +70,7 @@ ifeq ($(HB_SHELL),os2)
endif
ifeq ($(HB_SHELL),dos)
define inst_file_all