From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id C44791F44D for ; Thu, 25 Apr 2024 08:18:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1714033136; bh=NLN69+MU7zTT+5QvY2nWIV4YDbwDxhbQDwVBp/NA0Vg=; h=Date:From:To:Subject:References:In-Reply-To:From; b=wkaKiVUQrRkF/+UpkzUxguzgyeLk/11QMSikDwzznrgSktVy+5GSxlHDkfPl4rBOE Ic3KelSXQRna7U/RpwudxpPn+xLG39bNEXY/swk7F8/3SvV7Ct4T/098ebKEu8j7s+ Tmn8cUj6kAD81FJSY+rMbIVwicZ0vZ26/RX/vLkI= Date: Thu, 25 Apr 2024 08:11:32 +0000 From: Eric Wong To: meta@public-inbox.org Subject: BSD make problem [was: [PATCH 5/5] www: wire up search ...] Message-ID: <20240425081132.M769448@dcvr> References: <20240424064447.523799-1-e@80x24.org> <20240424064447.523799-6-e@80x24.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20240424064447.523799-6-e@80x24.org> List-Id: Eric Wong wrote: > diff --git a/MANIFEST b/MANIFEST > index 4c974338..fb175e5f 100644 > --- a/MANIFEST > +++ b/MANIFEST > @@ -382,6 +382,8 @@ lib/PublicInbox/XapClient.pm > lib/PublicInbox/XapHelper.pm > lib/PublicInbox/XapHelperCxx.pm > lib/PublicInbox/Xapcmd.pm > +lib/PublicInbox/XhcMset.pm > +lib/PublicInbox/XhcMsetIterator.pm With FreeBSD 13.2 make(1), changes to MANIFEST don't seem to trigger Makefile rebuilds even when Makefile.PL is made to depend on MANIFEST: Makefile.PL : MANIFEST touch -r MANIFEST $@ $(PERLRUN) $@ # and Makefile depends on Makefile.PL via this # ExtUtils::MakeMaker supplied rule: FIRST_MAKEFILE = Makefile $(FIRST_MAKEFILE) : Makefile.PL $(CONFIGDEP) ... It's not a problem with gmake, Makefile gets rebuilt whenever MANIFEST gets updated. Any suggestions? ExtUtils::MakeMaker seems generate some GNU-isms in its Makefile anyways, so perhaps requiring GNU make on *BSD is acceptable...