This commit is contained in:
Alexander Karatarakis 2016-09-28 15:34:10 -07:00
Родитель fb1130876f
Коммит 033f577c51
1 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -71,12 +71,10 @@ namespace vcpkg
System::println(System::color::warning, "Include files should not be duplicated into the /debug/include directory. If this cannot be disabled in the project cmake, use\n"
" file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)"
);
return
lint_status::ERROR;
return lint_status::ERROR;
}
return
lint_status::SUCCESS;
return lint_status::SUCCESS;
}
static lint_status check_for_files_in_debug_share_directory(const package_spec& spec, const vcpkg_paths& paths)