[Cmake-commits] CMake branch, next, updated. v3.7.0-1129-g7ea9805

Brad King brad.king at kitware.com
Mon Nov 14 10:14:08 EST 2016


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  7ea9805db8ae5017a26448d65048986ef2d10568 (commit)
       via  c087072e21823703a0979c2fde3419846f80cc8a (commit)
      from  eb936525a239daceef1fb6c607e540046cf09f92 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7ea9805db8ae5017a26448d65048986ef2d10568
commit 7ea9805db8ae5017a26448d65048986ef2d10568
Merge: eb93652 c087072
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Nov 14 10:14:07 2016 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Nov 14 10:14:07 2016 -0500

    Merge topic 'FindBISON-fix-rebuild' into next
    
    c087072e FindBISON: Do not rebuild every time when not VERBOSE


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c087072e21823703a0979c2fde3419846f80cc8a
commit c087072e21823703a0979c2fde3419846f80cc8a
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Nov 14 10:03:15 2016 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon Nov 14 10:06:48 2016 -0500

    FindBISON: Do not rebuild every time when not VERBOSE
    
    Since commit v3.7.0-rc1~348^2~3 (FindBISON: Change usage of [VERBOSE
    <file>] to [VERBOSE [<file>]], 2016-07-16) we always list the VERBOSE
    output file as an output of our custom command even if the option is not
    used.  This causes the rule to re-run every time (e.g. with Ninja).
    Revert one hunk from that change (that looks incorrect) to fix it.
    
    Closes: #16426

diff --git a/Modules/FindBISON.cmake b/Modules/FindBISON.cmake
index 5de7a39..d40b806 100644
--- a/Modules/FindBISON.cmake
+++ b/Modules/FindBISON.cmake
@@ -228,7 +228,7 @@ if(BISON_EXECUTABLE)
       list(APPEND BISON_TARGET_outputs "${BISON_TARGET_output_header}")
 
       add_custom_command(OUTPUT ${BISON_TARGET_outputs}
-        ${BISON_TARGET_verbose_file}
+        ${BISON_TARGET_extraoutputs}
         COMMAND ${BISON_EXECUTABLE} ${BISON_TARGET_cmdopt} -o ${BisonOutput} ${BisonInput}
         VERBATIM
         DEPENDS ${BisonInput}

-----------------------------------------------------------------------

Summary of changes:
 Modules/FindBISON.cmake |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list