2007-03-05 14:00 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/config/os2/install.cf
    * workaround for command line size limitation borrowed from xHarbour
This commit is contained in:
Przemyslaw Czerpak
2007-03-05 13:05:12 +00:00
parent b184835529
commit 49c3039329
2 changed files with 12 additions and 3 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-03-05 14:00 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/config/os2/install.cf
* workaround for command line size limitation borrowed from xHarbour
2007-03-05 04:10 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbexpra.c
! fixed GPF when _GET_() parameter is passed in parenthesis

View File

@@ -4,10 +4,15 @@
ifeq ($(SHLVL),) # An OS/2 command shell
define inst_file
ECHO $(CP) $(file) $(INSTALL_OS2_DIR) >> _NSTALL.CMD
endef
INSTALL_LIST = $(subst /,\,$(INSTALL_OBJS))
OS2_INSTALL_DIR = $(subst /,\,$(INSTALL_DIR))
INSTALL_RULE =\
CMD.EXE /c FOR %f IN ($(INSTALL_LIST)) DO IF EXIST $(OS2_INSTALL_DIR). COPY %f $(OS2_INSTALL_DIR)
INSTALL_OS2_DIR = $(subst /,\,$(INSTALL_DIR))
INSTALL_RULE = $(foreach file, $(INSTALL_LIST), $(inst_file)) \
$(COMSPEC) /c _NSTALL.CMD & $(RM) _NSTALL.CMD
else # bash