You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cmake/debian/patches/do-not-use-lib64.diff

19 lines
479 B

--- a/Source/cmFindLibraryCommand.cxx
+++ b/Source/cmFindLibraryCommand.cxx
@@ -158,6 +158,7 @@
void cmFindLibraryCommand::AddLib64Paths()
{
+#if 0 /* should not be done on Debian, just make it do nothing */
if(!this->Makefile->GetLocalGenerator()->GetGlobalGenerator()->
GetLanguageEnabled("C"))
{
@@ -205,6 +206,7 @@
{
this->SearchPaths = path64;
}
+#endif
}
//----------------------------------------------------------------------------