From 93eda33469d8743af270cdab572465b0cced507a Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 17 Feb 2009 00:39:43 +0000 Subject: [PATCH] 2009-02-17 01:39 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * config/linux/install.cf ! Added hack to ignore copy errors. This probably isn't the ultimate solution, but since a few weeks Harbour cannot be installed in the same dirs where sources are located, since it fails with cp: `file' and `/harbour/include/file' are the same file which causes that no binaries will be installed either. --- harbour/ChangeLog | 9 +++++++++ harbour/config/linux/install.cf | 1 + 2 files changed, 10 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index a16467c8f1..af83a22cd0 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-17 01:39 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * config/linux/install.cf + ! Added hack to ignore copy errors. + This probably isn't the ultimate solution, but since a few + weeks Harbour cannot be installed in the same dirs where + sources are located, since it fails with + cp: `file' and `/harbour/include/file' are the same file + which causes that no binaries will be installed either. + 2009-02-17 01:03 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * contrib/gtwvg/make_b32.bat * contrib/gtwvg/make_vc.bat diff --git a/harbour/config/linux/install.cf b/harbour/config/linux/install.cf index a34d1e0c9d..f18e434d01 100644 --- a/harbour/config/linux/install.cf +++ b/harbour/config/linux/install.cf @@ -14,6 +14,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 \