diff --git a/harbour/ChangeLog b/harbour/ChangeLog
index 2d8a84cd1d..15e2bb25ad 100644
--- a/harbour/ChangeLog
+++ b/harbour/ChangeLog
@@ -8,6 +8,15 @@
2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
+2009-02-25 15:22 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
+ * INSTALL
+ ! Typo in prev.
+
+ * config/darwin/install.cf
+ * config/win/install.cf
+ + Added same as Linux workaround to not let install phase
+ fail because copy on install error.
+
2009-02-25 14:36 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* bin/postinst.sh
! Fixed hb_mkslib link generation.
diff --git a/harbour/INSTALL b/harbour/INSTALL
index 76cb483f1d..8355ddf4be 100644
--- a/harbour/INSTALL
+++ b/harbour/INSTALL
@@ -30,7 +30,7 @@ Windows with MinGW + msys
and setup. msys should be put in PATH _before_ MinGW.
> set HB_INSTALL_PREFIX=
(use forward slashes and msys drive notation: /c/)
- > sh make_gnu.bat install
+ > sh make_gnu.sh install
To test it, go to /bin directory and type:
> hbmk2 ../tests/hello.prg
diff --git a/harbour/config/darwin/install.cf b/harbour/config/darwin/install.cf
index 53070b97c1..9e64496a60 100644
--- a/harbour/config/darwin/install.cf
+++ b/harbour/config/darwin/install.cf
@@ -13,6 +13,7 @@ INSTALL_RULE =\
then \
echo "! Installing $$i on $(INSTALL_DIR)"; \
$(CP) $$i $(INSTALL_DIR); \
+ true; \
else \
echo "! Can't install $$i, not found" 1>&2; \
fi \
diff --git a/harbour/config/win/install.cf b/harbour/config/win/install.cf
index 15d6a276aa..3abb21fdef 100644
--- a/harbour/config/win/install.cf
+++ b/harbour/config/win/install.cf
@@ -41,6 +41,7 @@ INSTALL_RULE =\
then \
echo "! Installing $$i on $(INSTALL_DIR)"; \
$(CP) $$i $(INSTALL_DIR); \
+ true; \
else \
echo "! Can't install $$i, not found" 1>&2; \
fi \