From 126b02960f1bbaeccbad370c6a4e33ffc9b2e73b Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 16 Oct 2008 12:34:30 +0000 Subject: [PATCH] 2008-10-16 14:33 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * common.mak * make_b32.bat * make_b32.mak * make_vc.bat * make_vc.mak * make_gcc.mak * HB_BUILD_VERBOSE=yes is now the default. If someone is wanting to build Harbour from source and is bothered by the compiler command-lines being shown, these can be turned off with HB_BUILD_VERBOSE=no. These lines are IMO very important to see, which options were exactly used when Harbour was built, I personally archive these logs along with the builds. --- harbour/ChangeLog | 15 +++++++++++++++ harbour/common.mak | 2 +- harbour/make_b32.bat | 2 +- harbour/make_b32.mak | 2 +- harbour/make_gcc.mak | 2 +- harbour/make_vc.bat | 2 +- harbour/make_vc.mak | 2 +- 7 files changed, 21 insertions(+), 6 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 4314120145..6a992724d7 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,21 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-10-16 14:33 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * common.mak + * make_b32.bat + * make_b32.mak + * make_vc.bat + * make_vc.mak + * make_gcc.mak + * HB_BUILD_VERBOSE=yes is now the default. If someone + is wanting to build Harbour from source and is bothered + by the compiler command-lines being shown, these can + be turned off with HB_BUILD_VERBOSE=no. + These lines are IMO very important to see, which options + were exactly used when Harbour was built, I personally + archive these logs along with the builds. + 2008-10-16 14:22 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * make_b32.mak * make_vc.mak diff --git a/harbour/common.mak b/harbour/common.mak index 4b96b1b27d..cece7d7729 100644 --- a/harbour/common.mak +++ b/harbour/common.mak @@ -14,7 +14,7 @@ # # Macro to show/hide executed commands # -!if "$(HB_BUILD_VERBOSE)" != "yes" +!if "$(HB_BUILD_VERBOSE)" == "no" .SILENT: !endif diff --git a/harbour/make_b32.bat b/harbour/make_b32.bat index 534a5c600e..9e4634c367 100644 --- a/harbour/make_b32.bat +++ b/harbour/make_b32.bat @@ -13,7 +13,7 @@ rem rem Set any of the below settings to customize your build process: rem set HB_BUILD_DLL=yes rem set HB_BUILD_DEBUG=yes -rem set HB_BUILD_VERBOSE=yes +rem set HB_BUILD_VERBOSE=no rem set HB_REBUILD_PARSER=yes rem set HB_MAKE_PROGRAM= rem set HB_SHOW_ERRORS= diff --git a/harbour/make_b32.mak b/harbour/make_b32.mak index e3877c0b36..bd35943701 100644 --- a/harbour/make_b32.mak +++ b/harbour/make_b32.mak @@ -28,7 +28,7 @@ # HB_BUILD_DLL - If set to yes enables building harbour VM+RTL # dll in addition to normal static build # HB_BUILD_DEBUG - If set to yes causes to compile with debug info -# HB_BUILD_VERBOSE - Enables echoing commands being executed +# HB_BUILD_VERBOSE - Controls echoing commands being executed # HB_REBUILD_PARSER - If set to yes force preprocessing new rules by # Bison (you must use Bison 2.3 or later) # HB_INSTALL_PREFIX - Path to installation directory into which diff --git a/harbour/make_gcc.mak b/harbour/make_gcc.mak index e47448432d..36964ba9d9 100644 --- a/harbour/make_gcc.mak +++ b/harbour/make_gcc.mak @@ -28,7 +28,7 @@ # HB_BUILD_DLL - If set to yes enables building harbour VM+RTL # dll in addition to normal static build (currently not working) # HB_BUILD_DEBUG - If set to yes causes to compile with debug info -# HB_BUILD_VERBOSE - Enables echoing commands being executed +# HB_BUILD_VERBOSE - Controls echoing commands being executed # HB_REBUILD_PARSER - If set to yes force preprocessing new rules by # Bison (you must use Bison 2.3 or later) # HB_INSTALL_PREFIX - Path to installation directory into which diff --git a/harbour/make_vc.bat b/harbour/make_vc.bat index 5d18e24bc7..f600806295 100644 --- a/harbour/make_vc.bat +++ b/harbour/make_vc.bat @@ -13,7 +13,7 @@ rem rem Set any of the below settings to customize your build process: rem set HB_BUILD_DLL=yes rem set HB_BUILD_DEBUG=yes -rem set HB_BUILD_VERBOSE=yes +rem set HB_BUILD_VERBOSE=no rem set HB_REBUILD_PARSER=yes rem set HB_MAKE_PROGRAM= rem set HB_SHOW_ERRORS= diff --git a/harbour/make_vc.mak b/harbour/make_vc.mak index d03e715378..b65d160434 100644 --- a/harbour/make_vc.mak +++ b/harbour/make_vc.mak @@ -28,7 +28,7 @@ # HB_BUILD_DLL - If set to yes enables building harbour VM+RTL # dll in addition to normal static build # HB_BUILD_DEBUG - If set to yes causes to compile with debug info -# HB_BUILD_VERBOSE - Enables echoing commands being executed +# HB_BUILD_VERBOSE - Controls echoing commands being executed # HB_REBUILD_PARSER - If set to yes force preprocessing new rules by # Bison (you must use Bison 2.3 or later) # HB_INSTALL_PREFIX - Path to installation directory into which