From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) by sourceware.org (Postfix) with ESMTP id 16632385840A for ; Mon, 14 Feb 2022 04:18:24 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 16632385840A Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org Received: by smtp.gentoo.org (Postfix, from userid 559) id AC61334302F; Mon, 14 Feb 2022 04:18:23 +0000 (UTC) From: Mike Frysinger To: newlib@sourceware.org Subject: [PATCH] newlib: rename doc/local.mk to Makefile.inc Date: Sun, 13 Feb 2022 23:18:26 -0500 Message-Id: <20220214041826.7804-1-vapier@gentoo.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.6 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: newlib@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Feb 2022 04:18:25 -0000 For consistency across the whole tree. --- newlib/Makefile.am | 2 +- newlib/Makefile.in | 4 ++-- newlib/doc/{local.mk => Makefile.inc} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename newlib/doc/{local.mk => Makefile.inc} (100%) diff --git a/newlib/Makefile.am b/newlib/Makefile.am index 5767f8524fd0..67fb1e8ba074 100644 --- a/newlib/Makefile.am +++ b/newlib/Makefile.am @@ -443,7 +443,7 @@ TEXI2DVI = texi2dvi -E TEXINFO_TEX = ../texinfo/texinfo.tex if HAVE_DOC -include doc/local.mk +include doc/Makefile.inc endif include libc/Makefile.inc include libm/Makefile.inc diff --git a/newlib/doc/local.mk b/newlib/doc/Makefile.inc similarity index 100% rename from newlib/doc/local.mk rename to newlib/doc/Makefile.inc -- 2.34.1