From 356b6f38cc1a98c5ed997057ea6cf2c1c10084df Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 1 Mar 2009 16:07:23 +0000 Subject: [PATCH] 2009-03-01 17:05 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * config/win/bcc32.cf ! Fix to prev. --- harbour/ChangeLog | 4 ++++ harbour/config/win/bcc32.cf | 7 ++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index b78fc67da6..12b2a564ad 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-03-01 17:05 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * config/win/bcc32.cf + ! Fix to prev. + 2009-03-01 16:05 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * config/win/bcc32.cf ! Fixed to use response files with tlib, to avoid command line diff --git a/harbour/config/win/bcc32.cf b/harbour/config/win/bcc32.cf index 3c9b17fa80..fa3f891727 100644 --- a/harbour/config/win/bcc32.cf +++ b/harbour/config/win/bcc32.cf @@ -70,14 +70,15 @@ LDFLAGS = $(LINKPATHS) #Note: The empty line below HAVE TO exist! define lib_object -echo -+ $(subst /,\,$(LIB_DIR)/$(file)) ^& >> __lib__.tmp +echo -+$(subst /,\,$(file)) ^& >> __lib__.tmp endef define create_library -echo $(subst /,\,$(LIB_DIR)/$@) > __lib__.tmp +if exist __lib__.tmp del __lib__.tmp $(foreach file, $(^F), $(lib_object)) -$(AR) $(ARFLAGS) @__lib__.tmp +echo -+>> __lib__.tmp +$(AR) $(subst /,\,$(LIB_DIR)/$@) /P64 $(ARFLAGS) @__lib__.tmp endef AR = tlib.exe