diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-08-10 15:43:46 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-08-10 15:43:46 +0000 |
commit | 927ebf7e811f9000091aad00ee3dd337501844ab (patch) | |
tree | 7db37332a859b9dd601da0e66ee5c1922fc96f30 /Mk | |
parent | 2e633db7d007a344ada2fc6939d0d36d38497efe (diff) | |
download | ports-927ebf7e811f9000091aad00ee3dd337501844ab.tar.gz ports-927ebf7e811f9000091aad00ee3dd337501844ab.zip |
- Update to 2.6.1
Changelog:
http://www.cmake.org/pipermail/cmake/2008-August/023188.html
bsd.cmake.mk
- Use VERBOSE mode when BATCH is defined to get more informative logs
on pointyhat/tinderbox
Notes
Notes:
svn path=/head/; revision=218344
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.cmake.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.cmake.mk b/Mk/bsd.cmake.mk index 72f7652a543b..d663c5bd67d5 100644 --- a/Mk/bsd.cmake.mk +++ b/Mk/bsd.cmake.mk @@ -78,7 +78,7 @@ CMAKE_BUILD_TYPE=DEBUG # # Force makefile verbosity if needed # -.if defined(CMAKE_VERBOSE) +.if defined(CMAKE_VERBOSE) || defined(BATCH) CMAKE_ARGS+= -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON .endif |