From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from vmicros1.altlinux.org (vmicros1.altlinux.org [194.107.17.57]) by sourceware.org (Postfix) with ESMTP id 59F6E3951C5F for ; Mon, 28 Jun 2021 09:22:49 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 59F6E3951C5F Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=altlinux.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=altlinux.org Received: from mua.local.altlinux.org (mua.local.altlinux.org [192.168.1.14]) by vmicros1.altlinux.org (Postfix) with ESMTP id D6B6C72C8B4 for ; Mon, 28 Jun 2021 12:22:47 +0300 (MSK) Received: by mua.local.altlinux.org (Postfix, from userid 508) id BB2B07CF736; Mon, 28 Jun 2021 12:22:47 +0300 (MSK) Date: Mon, 28 Jun 2021 12:22:47 +0300 From: "Dmitry V. Levin" To: libc-alpha@sourceware.org Subject: Re: One test per line, one source per line, etc. etc. etc. Message-ID: <20210628092246.GA3836@altlinux.org> References: <875yxz12we.fsf@oldenburg.str.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <875yxz12we.fsf@oldenburg.str.redhat.com> X-Spam-Status: No, score=-6.7 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jun 2021 09:22:50 -0000 On Sun, Jun 27, 2021 at 10:14:09PM +0200, Florian Weimer via Libc-alpha wrote: > * Carlos O'Donell via Libc-alpha: > > > Do we have consensus for someone to just cleanup all the makefiles > > to have one source per line, one test per line etc.? > > I think there was some opposition to trailing \ in lists in Makefiles. > This: > > routines += \ > read \ > write \ > > vs: > > routines += \ > read \ > write I'd suggest this instead: routines += \ read \ write \ # -- ldv