Re: [cmake-developers] Make CPACK_RPM_PACKAGE_RELEASE match Fedora/RHOS/CentOS recommended behaviour

2016-05-14 Thread Domen Vrankar
> That is infinitely simpler. Looks like a good addition to me. > > Applied to next: https://cmake.org/gitweb?p=cmake.git;a=commit;h=d758f12 Thanks, Domen -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers

[cmake-developers] [PATCH] cmFileCommand: sort list of files from glob command

2016-05-14 Thread Reiner Herrmann
file(GLOB ...) is often used to find source files. As it uses readdir(), the list of files will be unsorted. This list is often passed directly to add_executable / add_library. Linking binaries with an unsorted list will make it unreproducible, which means that the produced binary will differ depen