This is an automated email from the git hooks/post-receive script. thansen pushed a commit to branch master in repository aseprite.
commit e8873286245781b5683c55661d0df807e69a02ff Author: David Capello <[email protected]> Date: Tue Mar 1 14:52:41 2016 -0300 Fix check to know if dl library was found --- src/base/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/CMakeLists.txt b/src/base/CMakeLists.txt index dbd6b13..85cd532 100644 --- a/src/base/CMakeLists.txt +++ b/src/base/CMakeLists.txt @@ -93,7 +93,7 @@ if(WIN32) target_link_libraries(base-lib dbghelp shlwapi) else() find_library(DL_LIBRARY NAMES dl) - if(DL_LIBRARY_FOUND) + if(DL_LIBRARY) target_link_libraries(base-lib ${DL_LIBRARY}) endif() endif() -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/aseprite.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

