cmake/debian/patches/do-not-use-lib64.diff
Modestas Vainius 334aa05c68 Update debian/patches
Signed-off-by: Modestas Vainius <modestas@vainius.eu>
2009-02-07 16:36:39 +02:00

19 lines
479 B
Diff

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