[vcpkg] Revert 5671a12. Fixes #206, we should reapply these checks once all existing ports have been fixed.

This commit is contained in:
Robert Schumacher 2016-10-23 14:09:30 -07:00
parent 91be9db121
commit 7625d837d5

View File

@ -483,9 +483,10 @@ namespace vcpkg
default:
Checks::unreachable();
}
#if 0
error_count += check_no_subdirectories(paths.packages / spec.dir() / "lib");
error_count += check_no_subdirectories(paths.packages / spec.dir() / "debug" / "lib");
#endif
const std::vector<fs::path> debug_libs = recursive_find_files_with_extension_in_dir(paths.packages / spec.dir() / "lib", ".lib");
const std::vector<fs::path> release_libs = recursive_find_files_with_extension_in_dir(paths.packages / spec.dir() / "debug" / "lib", ".lib");