X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com Date: Thu, 25 Feb 2021 13:56:25 +0100 (CET) From: Roland Lutz To: "Peter Stuge (peter AT stuge DOT se) [via geda-user AT delorie DOT com]" Subject: Re: [geda-user] FreeBSD 12.2 "make all-recursive" error In-Reply-To: <20210225104632.6906.qmail@stuge.se> Message-ID: References: <202102240343 DOT 11O3hWQT023998 AT delorie DOT com> <20210225104632 DOT 6906 DOT qmail AT stuge DOT se> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Thu, 25 Feb 2021, Peter Stuge (peter AT stuge DOT se) [via geda-user AT delorie DOT com] wrote: > --8<-- gschem/src/Makefile.am > actions.decl.x: actions.decl.h actions.c Makefile > $(AM_V_GEN)$(CPP) -I$(srcdir) -c $< | \ > sed -e '/^.*KEEP_LINE /!d' -e 's/^.*KEEP_LINE //' > $@.tmp && \ > mv $@.tmp $@ > -->8-- Another thought: maybe $< doesn't work with FreeBSD `make', in which case replacing `$<' with `actions.decl.h' and re-generating actions.decl.x might fix the issue. > While touching this rule (and the actions.init.x one) maybe also remove > && since make stops on any error. Um, yes? That's exactly why I used && there. Why would you want `make' to ignore errors? Roland