diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2015-08-30 21:32:56 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2015-08-30 21:39:19 +0200 |
commit | e2ae671ce13872ab535a7c50c70bc57bfa53a1bb (patch) | |
tree | ef7a07d87b3ada754070473b70cd96dcb6e7f086 /winsup/utils/cygcheck.cc | |
parent | 8fb2a011880256c31b2698450a79ca753674d757 (diff) | |
download | cygnal-e2ae671ce13872ab535a7c50c70bc57bfa53a1bb.tar.gz cygnal-e2ae671ce13872ab535a7c50c70bc57bfa53a1bb.tar.bz2 cygnal-e2ae671ce13872ab535a7c50c70bc57bfa53a1bb.zip |
cygcheck.cc: Fix downlevel DLL handling
* cygcheck.cc (track_down): Skip error output for "api-ms-win-"
downlevel DLLs.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup/utils/cygcheck.cc')
-rw-r--r-- | winsup/utils/cygcheck.cc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/winsup/utils/cygcheck.cc b/winsup/utils/cygcheck.cc index 5d823e9a3..a7787ceb6 100644 --- a/winsup/utils/cygcheck.cc +++ b/winsup/utils/cygcheck.cc @@ -1,7 +1,7 @@ /* cygcheck.cc Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, - 2009, 2010, 2011, 2012, 2013, 2014 Red Hat, Inc. + 2009, 2010, 2011, 2012, 2013, 2014, 2015 Red Hat, Inc. This file is part of Cygwin. @@ -764,7 +764,12 @@ track_down (const char *file, const char *suffix, int lvl) const char *path = find_on_path (file, suffix, false, true); if (!path) { - display_error ("track_down: could not find %s\n", file); + /* The api-ms-win-*.dll files are in system32/downlevel and not in the + DLL search path, so find_on_path doesn't find them. Since they are + never actually linked against by the executables, they are of no + interest to us. Skip any error message in not finding them. */ + if (strncasecmp (file, "api-ms-win-", 11) || strcasecmp (suffix, ".dll")) + display_error ("track_down: could not find %s\n", file); return false; } |