head 1.1; access; symbols pkgsrc-2026Q1:1.1.0.18 pkgsrc-2026Q1-base:1.1 pkgsrc-2025Q4:1.1.0.16 pkgsrc-2025Q4-base:1.1 pkgsrc-2025Q3:1.1.0.14 pkgsrc-2025Q3-base:1.1 pkgsrc-2025Q2:1.1.0.12 pkgsrc-2025Q2-base:1.1 pkgsrc-2025Q1:1.1.0.10 pkgsrc-2025Q1-base:1.1 pkgsrc-2024Q4:1.1.0.8 pkgsrc-2024Q4-base:1.1 pkgsrc-2024Q3:1.1.0.6 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.4 pkgsrc-2024Q2-base:1.1 pkgsrc-2024Q1:1.1.0.2 pkgsrc-2024Q1-base:1.1; locks; strict; comment @// @; 1.1 date 2024.02.05.14.32.25; author nros; state Exp; branches; next ; commitid RsYJnJxStVDzJfXE; desc @@ 1.1 log @Codelite: Use gmake instead of just make Codelite generates gmake Makefiles, so use gmake from pkgsrc to make them build correctly. @ text @$NetBSD$ Codelite generates gmake Makefiles, so use pkgsrc gmake to make them build correctly --- Plugin/CompilerLocatorGCC.cpp.orig 2023-01-11 21:18:07.000000000 +0000 +++ Plugin/CompilerLocatorGCC.cpp @@@@ -161,12 +161,11 @@@@ void CompilerLocatorGCC::AddTools(Compil #endif toolFile.SetFullName("gcc"); AddTool(compiler, "CC", toolFile.GetFullPath(), suffix); - toolFile.SetFullName("make"); wxString makeExtraArgs; if(wxThread::GetCPUCount() > 1) { makeExtraArgs << "-j" << wxThread::GetCPUCount(); } - AddTool(compiler, "MAKE", toolFile.GetFullPath(), "", makeExtraArgs); + AddTool(compiler, "MAKE", "gmake", "", makeExtraArgs); // ++++----------------------------------------------------------------- // From this point on, we use /usr/bin only @