in get_prerequisites:
set(gp_regex "^\t([\t ]+)[\t ].*${eol_char}$")
which is missing a '^' before the second \t so should be:
set(gp_regex "^\t([^\t ]+)[\t ].*${eol_char}$")
Without this fix, the ldd output will never match filenames. Should I file a
bug
on the bugtracker for this too?
--
Cheers,
Mike Arthur
http://mikearthur.co.uk/
_______________________________________________
CMake mailing list
[email protected]
http://www.cmake.org/mailman/listinfo/cmake
