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  d8eed5c615ece7f1fb46f14e404501833239cdee (commit)
       via  5593d5718ec90f6a2e37ca4e2fdf3fc4537380ff (commit)
      from  51b1df74b6051d347e96bc462f787cd6855365d1 (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=d8eed5c615ece7f1fb46f14e404501833239cdee
commit d8eed5c615ece7f1fb46f14e404501833239cdee
Merge: 51b1df7 5593d57
Author:     Rolf Eike Beer <e...@sf-mail.de>
AuthorDate: Fri Jun 8 11:36:08 2012 -0400
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Fri Jun 8 11:36:08 2012 -0400

    Merge topic 'UseJava-13281' into next
    
    5593d57 UseJava: fix find_jar() called with multiple files (#13281)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5593d5718ec90f6a2e37ca4e2fdf3fc4537380ff
commit 5593d5718ec90f6a2e37ca4e2fdf3fc4537380ff
Author:     Rolf Eike Beer <e...@sf-mail.de>
AuthorDate: Fri Jun 8 17:22:43 2012 +0200
Commit:     Rolf Eike Beer <e...@sf-mail.de>
CommitDate: Fri Jun 8 17:35:32 2012 +0200

    UseJava: fix find_jar() called with multiple files (#13281)

diff --git a/Modules/UseJava.cmake b/Modules/UseJava.cmake
index 30cc920..0b2d1b8 100644
--- a/Modules/UseJava.cmake
+++ b/Modules/UseJava.cmake
@@ -533,9 +533,9 @@ function (find_jar VARIABLE)
         endif (${_state} STREQUAL "name")
     endforeach (arg ${ARGN})
 
-    if (${_jar_names} STREQUAL "")
+    if (NOT _jar_names)
         message(FATAL_ERROR "find_jar: No name to search for given")
-    endif (${_jar_names} STREQUAL "")
+    endif (NOT _jar_names)
 
     foreach (jar_name ${_jar_names})
         foreach (version ${_jar_versions})

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

Summary of changes:


hooks/post-receive
-- 
CMake
_______________________________________________
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits

Reply via email to