From: Stuart Henderson Subject: Re: devel/immer: fix build on sparc64 To: kurt@intricatesoftware.com Cc: ports@openbsd.org Date: Thu, 26 Dec 2024 18:15:50 +0000 ok On 2024/12/26 16:14, kurt@intricatesoftware.com wrote: > This fails to build on sparc64 because it is marked NO_BUILD but > uses the compiler in the configure stage. When marked NO_BUILD there > is no build depend on ports-clang. > > No bump in revision since no package changes. > > okay? > > Index: Makefile > =================================================================== > RCS file: /cvs/ports/devel/immer/Makefile,v > retrieving revision 1.3 > diff -u -p -u -r1.3 Makefile > --- Makefile 21 Dec 2024 11:39:33 -0000 1.3 > +++ Makefile 26 Dec 2024 16:13:27 -0000 > @@ -20,6 +20,9 @@ MODULES = devel/cmake \ > > BUILD_DEPENDS = devel/catch2 > > -NO_BUILD = Yes > +# configure stage uses the compiler so can't mark as no build > +#NO_BUILD = Yes > + > +do-build: > > .include >