From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id AFA6A3858408 for ; Fri, 7 Jan 2022 06:48:00 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org AFA6A3858408 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 87878342DD3; Fri, 7 Jan 2022 06:47:59 +0000 (UTC) From: Mike Frysinger To: newlib@sourceware.org Subject: [PATCH] libgloss: wince: add ACLOCAL_AMFLAGS settings Date: Fri, 7 Jan 2022 01:47:58 -0500 Message-Id: <20220107064758.13016-1-vapier@gentoo.org> X-Mailer: git-send-email 2.33.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.4 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP 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: Fri, 07 Jan 2022 06:48:02 -0000 This allows autoreconf to "just work" and find the right macros. --- libgloss/wince/Makefile.am | 1 + libgloss/wince/Makefile.in | 1 + 2 files changed, 2 insertions(+) diff --git a/libgloss/wince/Makefile.am b/libgloss/wince/Makefile.am index f5a45625fba3..a6b74bce8635 100644 --- a/libgloss/wince/Makefile.am +++ b/libgloss/wince/Makefile.am @@ -1,6 +1,7 @@ ## Process this file with automake to produce Makefile.in. AUTOMAKE_OPTIONS = foreign +ACLOCAL_AMFLAGS = -I . -I .. gdbdir = ${dir ${patsubst %/,%,${dir @srcdir@}}}gdb VPATH = $(gdbdir) diff --git a/libgloss/wince/Makefile.in b/libgloss/wince/Makefile.in index c8818936effd..00c32d844fe8 100644 --- a/libgloss/wince/Makefile.in +++ b/libgloss/wince/Makefile.in @@ -283,6 +283,7 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AUTOMAKE_OPTIONS = foreign +ACLOCAL_AMFLAGS = -I . -I .. gdbdir = ${dir ${patsubst %/,%,${dir @srcdir@}}}gdb stub_exe_SOURCES = wince-stub.c tooldir = $(exec_prefix)/$(host_alias) -- 2.33.0