[Cmake-commits] CMake branch, next, updated. v2.8.11.2-4329-geef9a95

Brad King brad.king at kitware.com
Wed Sep 25 15:54:17 EDT 2013


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  eef9a95245072d79f6b5c421eb3bfdf798e73692 (commit)
       via  2b6e4cd680f6493cb1cdbfa95d0a4448927d16fe (commit)
      from  18b0f44dbdd0fdd07aa9ddcd0d0e72bc55e81c64 (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 -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=eef9a95245072d79f6b5c421eb3bfdf798e73692
commit eef9a95245072d79f6b5c421eb3bfdf798e73692
Merge: 18b0f44 2b6e4cd
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Sep 25 15:54:16 2013 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Sep 25 15:54:16 2013 -0400

    Merge topic 'bash-completion-future-filter' into next
    
    2b6e4cd bash-completion: Fix filtering of cpack and ctest version lines


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=2b6e4cd680f6493cb1cdbfa95d0a4448927d16fe
commit 2b6e4cd680f6493cb1cdbfa95d0a4448927d16fe
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed Sep 25 15:51:00 2013 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Wed Sep 25 15:51:00 2013 -0400

    bash-completion: Fix filtering of cpack and ctest version lines

diff --git a/Docs/bash-completion/cpack b/Docs/bash-completion/cpack
index e3f611e..9ab6048 100644
--- a/Docs/bash-completion/cpack
+++ b/Docs/bash-completion/cpack
@@ -20,7 +20,7 @@ _cpack()
         -D)
             [[ $cur == *=* ]] && return # no completion for values
             COMPREPLY=( $( compgen -W '$( cpack --help-variable-list \
-                2>/dev/null | grep -v "^cmake version " )' -S = -- "$cur" ) )
+                2>/dev/null | grep -v "^cpack version " )' -S = -- "$cur" ) )
             compopt -o nospace
             return
             ;;
@@ -38,12 +38,12 @@ _cpack()
             ;;
         --help-command)
             COMPREPLY=( $( compgen -W '$( cpack --help-command-list 2>/dev/null|
-                grep -v "^cmake version " )' -- "$cur" ) )
+                grep -v "^cpack version " )' -- "$cur" ) )
             return
             ;;
         --help-variable)
             COMPREPLY=( $( compgen -W '$( cpack --help-variable-list \
-                2>/dev/null | grep -v "^cmake version " )' -- "$cur" ) )
+                2>/dev/null | grep -v "^cpack version " )' -- "$cur" ) )
             return
             ;;
     esac
diff --git a/Docs/bash-completion/ctest b/Docs/bash-completion/ctest
index 0158a54..25cb998 100644
--- a/Docs/bash-completion/ctest
+++ b/Docs/bash-completion/ctest
@@ -63,7 +63,7 @@ _ctest()
             ;;
         --help-command)
             COMPREPLY=( $( compgen -W '$( ctest --help-command-list 2>/dev/null|
-                grep -v "^cmake version " )' -- "$cur" ) )
+                grep -v "^ctest version " )' -- "$cur" ) )
             return
             ;;
     esac

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

Summary of changes:
 Docs/bash-completion/cpack |    6 +++---
 Docs/bash-completion/ctest |    2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list